search for: ad1f676

Displaying 1 result from an estimated 1 matches for "ad1f676".

Did you mean: a7d1f66
2013 Feb 28
1
[PATCH] x86/mm: fix invalid unlinking of nested p2m tables
...eardown, as it is already checked identically in p2m_teardown_hostp2m itself. Signed-off-by: Matthew Daley <mattjd@gmail.com> --- xen/arch/x86/mm/p2m.c | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/xen/arch/x86/mm/p2m.c b/xen/arch/x86/mm/p2m.c index de1dd82..ad1f676 100644 --- a/xen/arch/x86/mm/p2m.c +++ b/xen/arch/x86/mm/p2m.c @@ -490,15 +490,13 @@ void p2m_teardown(struct p2m_domain *p2m) void p2m_final_teardown(struct domain *d) { - /* Iterate over all p2m tables per domain */ - struct p2m_domain *p2m = p2m_get_hostp2m(d); - if ( p2m ) -...