diff options
author | Mark McLoughlin <[email protected]> | 2008-04-02 15:36:38 +0100 |
---|---|---|
committer | Ingo Molnar <[email protected]> | 2008-04-04 18:36:48 +0200 |
commit | c946c7de49a9ba50bc205d6359b41bbc8f01174c (patch) | |
tree | 96ab7a3279dc21603e4d86746411c4e81e9d0243 | |
parent | a684d69d15a8fafede7c5c0daac8c646bbee805c (diff) |
xen: Clear PG_pinned in release_{pt,pd}()
Signed-off-by: Mark McLoughlin <[email protected]>
Cc: [email protected]
Cc: Mark McLoughlin <[email protected]>
Cc: Jeremy Fitzhardinge <[email protected]>
Signed-off-by: Thomas Gleixner <[email protected]>
Signed-off-by: Ingo Molnar <[email protected]>
-rw-r--r-- | arch/x86/xen/enlighten.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/x86/xen/enlighten.c b/arch/x86/xen/enlighten.c index f16b056e5c56..27ee26aedf94 100644 --- a/arch/x86/xen/enlighten.c +++ b/arch/x86/xen/enlighten.c @@ -717,6 +717,7 @@ static void xen_release_ptpage(u32 pfn, unsigned level) pin_pagetable_pfn(MMUEXT_UNPIN_TABLE, pfn); make_lowmem_page_readwrite(__va(PFN_PHYS(pfn))); } + ClearPagePinned(page); } } |