diff options
author | Ingo Molnar <mingo@elte.hu> | 2007-01-05 19:36:23 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.osdl.org> | 2007-01-06 02:55:22 -0500 |
commit | d3b2c33860d4acdfe3ac29b40b03e655eb8d1e2c (patch) | |
tree | 390bb24d9d614473a3c0d06582f29ca94b28a5a3 /drivers/kvm/vmx.c | |
parent | 965b58a550b6f84815cb555e6abb953e863f1610 (diff) |
[PATCH] KVM: Use raw_smp_processor_id() instead of smp_processor_id() where applicable
Signed-off-by: Avi Kivity <avi@qumranet.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers/kvm/vmx.c')
-rw-r--r-- | drivers/kvm/vmx.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/kvm/vmx.c b/drivers/kvm/vmx.c index fbab07af6574..2d204fd45972 100644 --- a/drivers/kvm/vmx.c +++ b/drivers/kvm/vmx.c | |||
@@ -116,7 +116,7 @@ static void vmcs_clear(struct vmcs *vmcs) | |||
116 | static void __vcpu_clear(void *arg) | 116 | static void __vcpu_clear(void *arg) |
117 | { | 117 | { |
118 | struct kvm_vcpu *vcpu = arg; | 118 | struct kvm_vcpu *vcpu = arg; |
119 | int cpu = smp_processor_id(); | 119 | int cpu = raw_smp_processor_id(); |
120 | 120 | ||
121 | if (vcpu->cpu == cpu) | 121 | if (vcpu->cpu == cpu) |
122 | vmcs_clear(vcpu->vmcs); | 122 | vmcs_clear(vcpu->vmcs); |
@@ -541,7 +541,7 @@ static struct vmcs *alloc_vmcs_cpu(int cpu) | |||
541 | 541 | ||
542 | static struct vmcs *alloc_vmcs(void) | 542 | static struct vmcs *alloc_vmcs(void) |
543 | { | 543 | { |
544 | return alloc_vmcs_cpu(smp_processor_id()); | 544 | return alloc_vmcs_cpu(raw_smp_processor_id()); |
545 | } | 545 | } |
546 | 546 | ||
547 | static void free_vmcs(struct vmcs *vmcs) | 547 | static void free_vmcs(struct vmcs *vmcs) |