Searched refs:p2m_entry (Results 1 – 1 of 1) sorted by relevance
155 struct xen_p2m_entry *p2m_entry; in __set_phys_to_machine_multi() local162 p2m_entry = rb_entry(n, struct xen_p2m_entry, rbnode_phys); in __set_phys_to_machine_multi()163 if (p2m_entry->pfn <= pfn && in __set_phys_to_machine_multi()164 p2m_entry->pfn + p2m_entry->nr_pages > pfn) { in __set_phys_to_machine_multi()165 rb_erase(&p2m_entry->rbnode_phys, &phys_to_mach); in __set_phys_to_machine_multi()167 kfree(p2m_entry); in __set_phys_to_machine_multi()170 if (pfn < p2m_entry->pfn) in __set_phys_to_machine_multi()179 p2m_entry = kzalloc(sizeof(*p2m_entry), GFP_NOWAIT); in __set_phys_to_machine_multi()180 if (!p2m_entry) in __set_phys_to_machine_multi()183 p2m_entry->pfn = pfn; in __set_phys_to_machine_multi()[all …]