aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/kvm/x86.c
diff options
context:
space:
mode:
authorHarvey Harrison <harvey.harrison@gmail.com>2008-04-27 15:14:13 -0400
committerAvi Kivity <avi@qumranet.com>2008-07-20 05:40:46 -0400
commit8b2cf73cc11cf29a21c51c453a3205f23d888915 (patch)
tree554f6ffb9b75b1f049a5c8bb3b8e6cf52d17914e /arch/x86/kvm/x86.c
parent1e1c65e03ec817a64153751150f6691db9842acd (diff)
KVM: add statics were possible, function definition in lapic.h
Noticed by sparse: arch/x86/kvm/vmx.c:1583:6: warning: symbol 'vmx_disable_intercept_for_msr' was not declared. Should it be static? arch/x86/kvm/x86.c:3406:5: warning: symbol 'kvm_task_switch_16' was not declared. Should it be static? arch/x86/kvm/x86.c:3429:5: warning: symbol 'kvm_task_switch_32' was not declared. Should it be static? arch/x86/kvm/mmu.c:1968:6: warning: symbol 'kvm_mmu_remove_one_alloc_mmu_page' was not declared. Should it be static? arch/x86/kvm/mmu.c:2014:6: warning: symbol 'mmu_destroy_caches' was not declared. Should it be static? arch/x86/kvm/lapic.c:862:5: warning: symbol 'kvm_lapic_get_base' was not declared. Should it be static? arch/x86/kvm/i8254.c:94:5: warning: symbol 'pit_get_gate' was not declared. Should it be static? arch/x86/kvm/i8254.c:196:5: warning: symbol '__pit_timer_fn' was not declared. Should it be static? arch/x86/kvm/i8254.c:561:6: warning: symbol '__inject_pit_timer_intr' was not declared. Should it be static? Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com> Signed-off-by: Avi Kivity <avi@qumranet.com>
Diffstat (limited to 'arch/x86/kvm/x86.c')
-rw-r--r--arch/x86/kvm/x86.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/x86/kvm/x86.c b/arch/x86/kvm/x86.c
index 0faa2546b1cd..45dc2b6a9c82 100644
--- a/arch/x86/kvm/x86.c
+++ b/arch/x86/kvm/x86.c
@@ -3449,7 +3449,7 @@ static int load_state_from_tss16(struct kvm_vcpu *vcpu,
3449 return 0; 3449 return 0;
3450} 3450}
3451 3451
3452int kvm_task_switch_16(struct kvm_vcpu *vcpu, u16 tss_selector, 3452static int kvm_task_switch_16(struct kvm_vcpu *vcpu, u16 tss_selector,
3453 struct desc_struct *cseg_desc, 3453 struct desc_struct *cseg_desc,
3454 struct desc_struct *nseg_desc) 3454 struct desc_struct *nseg_desc)
3455{ 3455{
@@ -3472,7 +3472,7 @@ out:
3472 return ret; 3472 return ret;
3473} 3473}
3474 3474
3475int kvm_task_switch_32(struct kvm_vcpu *vcpu, u16 tss_selector, 3475static int kvm_task_switch_32(struct kvm_vcpu *vcpu, u16 tss_selector,
3476 struct desc_struct *cseg_desc, 3476 struct desc_struct *cseg_desc,
3477 struct desc_struct *nseg_desc) 3477 struct desc_struct *nseg_desc)
3478{ 3478{