diff options
author | Alexander Graf <agraf@suse.de> | 2014-07-14 12:27:35 -0400 |
---|---|---|
committer | Alexander Graf <agraf@suse.de> | 2014-07-28 09:23:17 -0400 |
commit | 784aa3d7fb6f729c06d5836c9d9569f58e4d05ae (patch) | |
tree | 301ddcd02c27f91d488857d6df1bca5ea4c68bd7 /arch/ia64 | |
parent | 9678cdaae93932473f696fdea5debf3eee1e1260 (diff) |
KVM: Rename and add argument to check_extension
In preparation to make the check_extension function available to VM scope
we add a struct kvm * argument to the function header and rename the function
accordingly. It will still be called from the /dev/kvm fd, but with a NULL
argument for struct kvm *.
Signed-off-by: Alexander Graf <agraf@suse.de>
Acked-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'arch/ia64')
-rw-r--r-- | arch/ia64/kvm/kvm-ia64.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/ia64/kvm/kvm-ia64.c b/arch/ia64/kvm/kvm-ia64.c index 6a4309bb821a..0729ba6acddf 100644 --- a/arch/ia64/kvm/kvm-ia64.c +++ b/arch/ia64/kvm/kvm-ia64.c | |||
@@ -190,7 +190,7 @@ void kvm_arch_check_processor_compat(void *rtn) | |||
190 | *(int *)rtn = 0; | 190 | *(int *)rtn = 0; |
191 | } | 191 | } |
192 | 192 | ||
193 | int kvm_dev_ioctl_check_extension(long ext) | 193 | int kvm_vm_ioctl_check_extension(struct kvm *kvm, long ext) |
194 | { | 194 | { |
195 | 195 | ||
196 | int r; | 196 | int r; |