From: Glauber Costa <[email protected]> We don't use kvm_context anymore. So remove it. Also, the function is not used anywhere else, so make it static.
Signed-off-by: Glauber Costa <[email protected]> Signed-off-by: Marcelo Tosatti <[email protected]> diff --git a/qemu-kvm-x86.c b/qemu-kvm-x86.c index 61d9331..5bd752d 100644 --- a/qemu-kvm-x86.c +++ b/qemu-kvm-x86.c @@ -321,7 +321,7 @@ void kvm_show_code(CPUState *env) /* * Returns available msr list. User must free. */ -struct kvm_msr_list *kvm_get_msr_list(kvm_context_t kvm) +static struct kvm_msr_list *kvm_get_msr_list(void) { struct kvm_msr_list sizer, *msrs; int r; @@ -586,7 +586,7 @@ int kvm_arch_qemu_create_context(void) if (kvm_shadow_memory) kvm_set_shadow_pages(kvm_context, kvm_shadow_memory); - kvm_msr_list = kvm_get_msr_list(kvm_context); + kvm_msr_list = kvm_get_msr_list(); if (!kvm_msr_list) return -1; for (i = 0; i < kvm_msr_list->nmsrs; ++i) { diff --git a/qemu-kvm.h b/qemu-kvm.h index f1f706c..6f6c6d8 100644 --- a/qemu-kvm.h +++ b/qemu-kvm.h @@ -97,7 +97,6 @@ int handle_io_window(kvm_context_t kvm); int try_push_interrupts(kvm_context_t kvm); #if defined(__x86_64__) || defined(__i386__) -struct kvm_msr_list *kvm_get_msr_list(kvm_context_t); int kvm_get_msrs(CPUState *env, struct kvm_msr_entry *msrs, int n); int kvm_set_msrs(CPUState *env, struct kvm_msr_entry *msrs, int n); int kvm_get_mce_cap_supported(kvm_context_t, uint64_t *mce_cap, -- To unsubscribe from this list: send the line "unsubscribe kvm-commits" in the body of a message to [email protected] More majordomo info at http://vger.kernel.org/majordomo-info.html
