ff4b346ede
disk fails with UnboundLocalError: local variable 'dev_type' referenced before assignment 21678-xend-mac-fix.patch - bnc#586221 - cannot add DomU with USB host controller defined domu-usb-controller.patch (Chun Yan Liu) - Upstream patches from Jan 21151-trace-bounds-check.patch 21627-cpuidle-wrap.patch 21643-vmx-vpmu-pmc-offset.patch 21682-trace-buffer-range.patch 21683-vtd-kill-timer-conditional.patch 21693-memevent-64bit-only.patch 21695-trace-t_info-readonly.patch 21698-x86-pirq-range-check.patch 21699-p2m-query-for-type-change.patch 21700-32on64-vm86-gpf.patch 21705-trace-printk.patch 21706-trace-security.patch 21712-amd-osvw.patch 21744-x86-cpufreq-range-check.patch - bnc #599550 - Xen cannot distinguish the status of 'pause' addcommand_domstate.patch OBS-URL: https://build.opensuse.org/package/show/Virtualization/xen?expand=0&rev=63
25 lines
760 B
Diff
25 lines
760 B
Diff
# HG changeset patch
|
|
# User Keir Fraser <keir.fraser@citrix.com>
|
|
# Date 1277917902 -3600
|
|
# Node ID 7cda3ad44c6d4e799e65b2ffe21e609f50cdb94b
|
|
# Parent 81d6471ff1235fde2c30428b920cb6e00ba546d6
|
|
Use gfn_to_mfn_query() rather then gfn_to_mfn() when changing P2M types
|
|
|
|
Use gfn_to_mfn_query() rather then gfn_to_mfn() when changing
|
|
P2M types since we do not really want to force a PoD allocation
|
|
as a side effect.
|
|
|
|
Signed-off-by: Paul Durrant <Paul.Durrant@citrix.com>
|
|
|
|
--- a/xen/arch/x86/mm/p2m.c
|
|
+++ b/xen/arch/x86/mm/p2m.c
|
|
@@ -2351,7 +2351,7 @@ p2m_type_t p2m_change_type(struct domain
|
|
|
|
p2m_lock(d->arch.p2m);
|
|
|
|
- mfn = gfn_to_mfn(d, gfn, &pt);
|
|
+ mfn = gfn_to_mfn_query(d, gfn, &pt);
|
|
if ( pt == ot )
|
|
set_p2m_entry(d, gfn, mfn, 0, nt);
|
|
|