Searched refs:p2m_entry (Results 1 – 1 of 1) sorted by relevance
154 struct xen_p2m_entry *p2m_entry; in __set_phys_to_machine_multi() local160 p2m_entry = rb_entry(n, struct xen_p2m_entry, rbnode_phys); in __set_phys_to_machine_multi()161 if (p2m_entry->pfn <= pfn && in __set_phys_to_machine_multi()162 p2m_entry->pfn + p2m_entry->nr_pages > pfn) { in __set_phys_to_machine_multi()163 rb_erase(&p2m_entry->rbnode_phys, &phys_to_mach); in __set_phys_to_machine_multi()165 kfree(p2m_entry); in __set_phys_to_machine_multi()168 if (pfn < p2m_entry->pfn) in __set_phys_to_machine_multi()177 p2m_entry = kzalloc(sizeof(*p2m_entry), GFP_NOWAIT); in __set_phys_to_machine_multi()178 if (!p2m_entry) in __set_phys_to_machine_multi()181 p2m_entry->pfn = pfn; in __set_phys_to_machine_multi()[all …]