Searched refs:p2m_entry (Results 1 – 1 of 1) sorted by relevance
124 struct xen_p2m_entry *p2m_entry; in __set_phys_to_machine_multi() local130 p2m_entry = rb_entry(n, struct xen_p2m_entry, rbnode_phys); in __set_phys_to_machine_multi()131 if (p2m_entry->pfn <= pfn && in __set_phys_to_machine_multi()132 p2m_entry->pfn + p2m_entry->nr_pages > pfn) { in __set_phys_to_machine_multi()133 rb_erase(&p2m_entry->rbnode_phys, &phys_to_mach); in __set_phys_to_machine_multi()135 kfree(p2m_entry); in __set_phys_to_machine_multi()138 if (pfn < p2m_entry->pfn) in __set_phys_to_machine_multi()147 p2m_entry = kzalloc(sizeof(struct xen_p2m_entry), GFP_NOWAIT); in __set_phys_to_machine_multi()148 if (!p2m_entry) { in __set_phys_to_machine_multi()152 p2m_entry->pfn = pfn; in __set_phys_to_machine_multi()[all …]