|
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen-unstable] x86/mm: Fix paging_load
# HG changeset patch
# User Andres Lagar-Cavilla <andres@xxxxxxxxxxxxxxxx>
# Date 1327584087 0
# Node ID 4e52d39fdb25914ac15aef62129e95b645166b24
# Parent 89fdabcf315fdaabeebf05c51a6b3b6dd4c20e85
x86/mm: Fix paging_load
When restoring a p2m entry in the paging_load path, we were not updating the
m2p entry correctly.
Also take advantage of this to act on an old suggestion: once done with the
load, promote the p2m entry to the final guest accessible type. This simplifies
logic.
Tested to work with xenpaging.
Signed-off-by: Andres Lagar-Cavilla <andres@xxxxxxxxxxxxxxxx>
Acked-by: Olaf Hering <olaf@xxxxxxxxx>
Acked-by: Tim Deegan <tim@xxxxxxx>
Committed-by: Tim Deegan <tim@xxxxxxx>
---
diff -r 89fdabcf315f -r 4e52d39fdb25 xen/arch/x86/mm/p2m.c
--- a/xen/arch/x86/mm/p2m.c Thu Jan 26 12:46:26 2012 +0000
+++ b/xen/arch/x86/mm/p2m.c Thu Jan 26 13:21:27 2012 +0000
@@ -975,7 +975,7 @@
int p2m_mem_paging_prep(struct domain *d, unsigned long gfn, uint64_t buffer)
{
struct page_info *page;
- p2m_type_t p2mt, target_p2mt;
+ p2m_type_t p2mt;
p2m_access_t a;
mfn_t mfn;
struct p2m_domain *p2m = p2m_get_hostp2m(d);
@@ -1033,15 +1033,13 @@
}
}
- target_p2mt = (p2mt == p2m_ram_paging_in_start) ?
- /* If we kicked the pager with a populate event, the pager will send
- * a resume event back */
- p2m_ram_paging_in :
- /* If this was called asynchronously by the pager, then we can
- * transition directly to the final guest-accessible type */
- (paging_mode_log_dirty(d) ? p2m_ram_logdirty : p2m_ram_rw);
- /* Fix p2m mapping */
- set_p2m_entry(p2m, gfn, mfn, PAGE_ORDER_4K, target_p2mt, a);
+ /* Make the page already guest-accessible. If the pager still has a
+ * pending resume operation, it will be idempotent p2m entry-wise,
+ * but will unpause the vcpu */
+ set_p2m_entry(p2m, gfn, mfn, PAGE_ORDER_4K,
+ paging_mode_log_dirty(d) ? p2m_ram_logdirty :
+ p2m_ram_rw, a);
+ set_gpfn_from_mfn(mfn_x(mfn), gfn);
atomic_dec(&d->paged_pages);
_______________________________________________
Xen-changelog mailing list
Xen-changelog@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-changelog
|
![]() |
Lists.xenproject.org is hosted with RackSpace, monitoring our |