diff options
author | Takuya Yoshikawa <yoshikawa_takuya_b1@lab.ntt.co.jp> | 2013-02-27 05:41:56 -0500 |
---|---|---|
committer | Marcelo Tosatti <mtosatti@redhat.com> | 2013-03-04 18:21:08 -0500 |
commit | 462fce46065ec4b200c08619c047b9e5a8fd154a (patch) | |
tree | c36cb39e0a8377da88b87ca5b99344357a6c31be /arch/s390/kvm | |
parent | ee2c25efdd46d7ed5605d6fe877bdf4b47a4ab2e (diff) |
KVM: set_memory_region: Drop user_alloc from prepare/commit_memory_region()
X86 does not use this any more. The remaining user, s390's !user_alloc
check, can be simply removed since KVM_SET_MEMORY_REGION ioctl is no
longer supported.
Note: fixed powerpc's indentations with spaces to suppress checkpatch
errors.
Signed-off-by: Takuya Yoshikawa <yoshikawa_takuya_b1@lab.ntt.co.jp>
Signed-off-by: Marcelo Tosatti <mtosatti@redhat.com>
Diffstat (limited to 'arch/s390/kvm')
-rw-r--r-- | arch/s390/kvm/kvm-s390.c | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/arch/s390/kvm/kvm-s390.c b/arch/s390/kvm/kvm-s390.c index 4cf35a0a79e7..07ac302ce246 100644 --- a/arch/s390/kvm/kvm-s390.c +++ b/arch/s390/kvm/kvm-s390.c | |||
@@ -975,8 +975,7 @@ int kvm_arch_create_memslot(struct kvm_memory_slot *slot, unsigned long npages) | |||
975 | int kvm_arch_prepare_memory_region(struct kvm *kvm, | 975 | int kvm_arch_prepare_memory_region(struct kvm *kvm, |
976 | struct kvm_memory_slot *memslot, | 976 | struct kvm_memory_slot *memslot, |
977 | struct kvm_memory_slot old, | 977 | struct kvm_memory_slot old, |
978 | struct kvm_userspace_memory_region *mem, | 978 | struct kvm_userspace_memory_region *mem) |
979 | bool user_alloc) | ||
980 | { | 979 | { |
981 | /* A few sanity checks. We can have exactly one memory slot which has | 980 | /* A few sanity checks. We can have exactly one memory slot which has |
982 | to start at guest virtual zero and which has to be located at a | 981 | to start at guest virtual zero and which has to be located at a |
@@ -997,16 +996,12 @@ int kvm_arch_prepare_memory_region(struct kvm *kvm, | |||
997 | if (mem->memory_size & 0xffffful) | 996 | if (mem->memory_size & 0xffffful) |
998 | return -EINVAL; | 997 | return -EINVAL; |
999 | 998 | ||
1000 | if (!user_alloc) | ||
1001 | return -EINVAL; | ||
1002 | |||
1003 | return 0; | 999 | return 0; |
1004 | } | 1000 | } |
1005 | 1001 | ||
1006 | void kvm_arch_commit_memory_region(struct kvm *kvm, | 1002 | void kvm_arch_commit_memory_region(struct kvm *kvm, |
1007 | struct kvm_userspace_memory_region *mem, | 1003 | struct kvm_userspace_memory_region *mem, |
1008 | struct kvm_memory_slot old, | 1004 | struct kvm_memory_slot old) |
1009 | bool user_alloc) | ||
1010 | { | 1005 | { |
1011 | int rc; | 1006 | int rc; |
1012 | 1007 | ||