Searched refs:p2m_entry (Results 1 – 1 of 1) sorted by relevance
156 struct xen_p2m_entry *p2m_entry; in __set_phys_to_machine_multi() local163 p2m_entry = rb_entry(n, struct xen_p2m_entry, rbnode_phys); in __set_phys_to_machine_multi()164 if (p2m_entry->pfn <= pfn && in __set_phys_to_machine_multi()165 p2m_entry->pfn + p2m_entry->nr_pages > pfn) { in __set_phys_to_machine_multi()166 rb_erase(&p2m_entry->rbnode_phys, &phys_to_mach); in __set_phys_to_machine_multi()168 kfree(p2m_entry); in __set_phys_to_machine_multi()171 if (pfn < p2m_entry->pfn) in __set_phys_to_machine_multi()180 p2m_entry = kzalloc(sizeof(*p2m_entry), GFP_NOWAIT); in __set_phys_to_machine_multi()181 if (!p2m_entry) in __set_phys_to_machine_multi()184 p2m_entry->pfn = pfn; in __set_phys_to_machine_multi()[all …]