Commit fc1b7492 authored by Geoff Levand's avatar Geoff Levand Committed by Gleb Natapov

KVM: Move vm_list kvm_lock declarations out of x86

The variables vm_list and kvm_lock are common to all architectures, so
move the declarations from arch/x86/include/asm/kvm_host.h to
include/linux/kvm_host.h.

Fixes sparse warnings like these when building for arm64:

  virt/kvm/kvm_main.c: warning: symbol 'kvm_lock' was not declared. Should it be static?
  virt/kvm/kvm_main.c: warning: symbol 'vm_list' was not declared. Should it be static?
Signed-off-by: default avatarGeoff Levand <geoff@infradead.org>
Signed-off-by: default avatarGleb Natapov <gleb@redhat.com>
parent a63cb560
...@@ -94,9 +94,6 @@ ...@@ -94,9 +94,6 @@
#define ASYNC_PF_PER_VCPU 64 #define ASYNC_PF_PER_VCPU 64
extern raw_spinlock_t kvm_lock;
extern struct list_head vm_list;
struct kvm_vcpu; struct kvm_vcpu;
struct kvm; struct kvm;
struct kvm_async_pf; struct kvm_async_pf;
......
...@@ -135,6 +135,9 @@ struct kvm; ...@@ -135,6 +135,9 @@ struct kvm;
struct kvm_vcpu; struct kvm_vcpu;
extern struct kmem_cache *kvm_vcpu_cache; extern struct kmem_cache *kvm_vcpu_cache;
extern raw_spinlock_t kvm_lock;
extern struct list_head vm_list;
struct kvm_io_range { struct kvm_io_range {
gpa_t addr; gpa_t addr;
int len; int len;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment