[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] Fix Linux for cpuset -> vcpumask rename.
ChangeSet 1.1663, 2005/06/03 14:59:33+01:00, kaf24@xxxxxxxxxxxxxxxxxxxx Fix Linux for cpuset -> vcpumask rename. Signed-off-by: Keir Fraser <keir@xxxxxxxxxxxxx> i386/mm/hypervisor.c | 4 ++-- x86_64/mm/hypervisor.c | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff -Nru 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 --- a/linux-2.6.11-xen-sparse/arch/xen/i386/mm/hypervisor.c 2005-06-03 11:03:25 -04:00 +++ b/linux-2.6.11-xen-sparse/arch/xen/i386/mm/hypervisor.c 2005-06-03 11:03:25 -04:00 @@ -112,7 +112,7 @@ 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 @@ 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 -Nru 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 --- a/linux-2.6.11-xen-sparse/arch/xen/x86_64/mm/hypervisor.c 2005-06-03 11:03:25 -04:00 +++ b/linux-2.6.11-xen-sparse/arch/xen/x86_64/mm/hypervisor.c 2005-06-03 11:03:25 -04:00 @@ -122,7 +122,7 @@ 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 @@ 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); } _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxxxxxxxx http://lists.xensource.com/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |