aboutsummaryrefslogtreecommitdiffstats
path: root/linux-2.6.11-xen-sparse
diff options
context:
space:
mode:
authorkaf24@firebug.cl.cam.ac.uk <kaf24@firebug.cl.cam.ac.uk>2005-06-03 13:59:33 +0000
committerkaf24@firebug.cl.cam.ac.uk <kaf24@firebug.cl.cam.ac.uk>2005-06-03 13:59:33 +0000
commit440fe2cdff87d510dd2cd8cbfa747b140ce879d5 (patch)
tree7815c744cf4ea79ab5b0e94ab97b571d2214a995 /linux-2.6.11-xen-sparse
parentf2f4f0e234dfce8a6c106c9c997e8d4856661e91 (diff)
downloadxen-440fe2cdff87d510dd2cd8cbfa747b140ce879d5.tar.gz
xen-440fe2cdff87d510dd2cd8cbfa747b140ce879d5.tar.bz2
xen-440fe2cdff87d510dd2cd8cbfa747b140ce879d5.zip
bitkeeper revision 1.1663 (42a06245ee2G6mCs2baAK3_UiolIcQ)
Fix Linux for cpuset -> vcpumask rename. Signed-off-by: Keir Fraser <keir@xensource.com>
Diffstat (limited to 'linux-2.6.11-xen-sparse')
-rw-r--r--linux-2.6.11-xen-sparse/arch/xen/i386/mm/hypervisor.c4
-rw-r--r--linux-2.6.11-xen-sparse/arch/xen/x86_64/mm/hypervisor.c4
2 files changed, 4 insertions, 4 deletions
diff --git a/linux-2.6.11-xen-sparse/arch/xen/i386/mm/hypervisor.c b/linux-2.6.11-xen-sparse/arch/xen/i386/mm/hypervisor.c
index 16b253866f..641bca708d 100644
--- a/linux-2.6.11-xen-sparse/arch/xen/i386/mm/hypervisor.c
+++ b/linux-2.6.11-xen-sparse/arch/xen/i386/mm/hypervisor.c
@@ -112,7 +112,7 @@ void xen_tlb_flush_mask(cpumask_t *mask)
if ( cpus_empty(*mask) )
return;
op.cmd = MMUEXT_TLB_FLUSH_MULTI;
- op.cpuset = mask->bits;
+ op.vcpumask = mask->bits;
BUG_ON(HYPERVISOR_mmuext_op(&op, 1, NULL, DOMID_SELF) < 0);
}
@@ -130,7 +130,7 @@ void xen_invlpg_mask(cpumask_t *mask, unsigned long ptr)
if ( cpus_empty(*mask) )
return;
op.cmd = MMUEXT_INVLPG_MULTI;
- op.cpuset = mask->bits;
+ op.vcpumask = mask->bits;
op.linear_addr = ptr & PAGE_MASK;
BUG_ON(HYPERVISOR_mmuext_op(&op, 1, NULL, DOMID_SELF) < 0);
}
diff --git a/linux-2.6.11-xen-sparse/arch/xen/x86_64/mm/hypervisor.c b/linux-2.6.11-xen-sparse/arch/xen/x86_64/mm/hypervisor.c
index 83a922954c..3923162df8 100644
--- a/linux-2.6.11-xen-sparse/arch/xen/x86_64/mm/hypervisor.c
+++ b/linux-2.6.11-xen-sparse/arch/xen/x86_64/mm/hypervisor.c
@@ -122,7 +122,7 @@ void xen_tlb_flush_mask(cpumask_t *mask)
if ( cpus_empty(*mask) )
return;
op.cmd = MMUEXT_TLB_FLUSH_MULTI;
- op.cpuset = mask->bits;
+ op.vcpumask = mask->bits;
BUG_ON(HYPERVISOR_mmuext_op(&op, 1, NULL, DOMID_SELF) < 0);
}
@@ -140,7 +140,7 @@ void xen_invlpg_mask(cpumask_t *mask, unsigned long ptr)
if ( cpus_empty(*mask) )
return;
op.cmd = MMUEXT_INVLPG_MULTI;
- op.cpuset = mask->bits;
+ op.vcpumask = mask->bits;
op.linear_addr = ptr & PAGE_MASK;
BUG_ON(HYPERVISOR_mmuext_op(&op, 1, NULL, DOMID_SELF) < 0);
}