aboutsummaryrefslogtreecommitdiffstats
path: root/xen/arch/x86/domain.c
diff options
context:
space:
mode:
authorStefano Stabellini <stefano.stabellini@eu.citrix.com>2012-01-28 13:45:13 +0000
committerStefano Stabellini <stefano.stabellini@eu.citrix.com>2012-01-28 13:45:13 +0000
commit0057a949dea2d22b1d9be884a7bd9912aa7f03cc (patch)
tree020b270ccdf54a2c545649511785e3466af3fc61 /xen/arch/x86/domain.c
parent68e1fbf3db5ed49b05214064a5516154ca0bf842 (diff)
downloadxen-0057a949dea2d22b1d9be884a7bd9912aa7f03cc.tar.gz
xen-0057a949dea2d22b1d9be884a7bd9912aa7f03cc.tar.bz2
xen-0057a949dea2d22b1d9be884a7bd9912aa7f03cc.zip
xen: introduce PHYSDEVOP_pirq_eoi_gmfn_v2
PHYSDEVOP_pirq_eoi_gmfn changes the semantics of PHYSDEVOP_eoi. In order to improve the interface this patch: - renames PHYSDEVOP_pirq_eoi_gmfn to PHYSDEVOP_pirq_eoi_gmfn_v1; - introduces PHYSDEVOP_pirq_eoi_gmfn_v2, that is like PHYSDEVOP_pirq_eoi_gmfn_v1 but it doesn't modify the behaviour of another hypercall; - bump __XEN_LATEST_INTERFACE_VERSION__; - #define PHYSDEVOP_pirq_eoi_gmfn to PHYSDEVOP_pirq_eoi_gmfn_v1 or PHYSDEVOP_pirq_eoi_gmfn_v2 depending on the __XEN_INTERFACE_VERSION. Signed-off-by: Stefano Stabellini <stefano.stabellini@eu.citrix.com> Committed-by: Keir Fraser <keir@xen.org>
Diffstat (limited to 'xen/arch/x86/domain.c')
-rw-r--r--xen/arch/x86/domain.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/xen/arch/x86/domain.c b/xen/arch/x86/domain.c
index 61d83c859f..a540af75e4 100644
--- a/xen/arch/x86/domain.c
+++ b/xen/arch/x86/domain.c
@@ -2125,6 +2125,7 @@ int domain_relinquish_resources(struct domain *d)
put_page_and_type(
mfn_to_page(d->arch.pv_domain.pirq_eoi_map_mfn));
d->arch.pv_domain.pirq_eoi_map = NULL;
+ d->arch.pv_domain.auto_unmask = 0;
}
}