diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2019-03-28 17:24:03 +0100 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2019-04-16 15:39:08 +0200 |
commit | c110ae578ca0a10064dfbda3d786d6a733b9fe69 (patch) | |
tree | b3c672dffd74fadaf513a2151bc839773b07a470 /arch/s390 | |
parent | 0a62956312e9dcd0ce5c59be4f0a8d8292a62402 (diff) | |
download | linux-c110ae578ca0a10064dfbda3d786d6a733b9fe69.tar.gz linux-c110ae578ca0a10064dfbda3d786d6a733b9fe69.tar.bz2 linux-c110ae578ca0a10064dfbda3d786d6a733b9fe69.zip |
kvm: move KVM_CAP_NR_MEMSLOTS to common code
All architectures except MIPS were defining it in the same way,
and memory slots are handled entirely by common code so there
is no point in keeping the definition per-architecture.
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'arch/s390')
-rw-r--r-- | arch/s390/kvm/kvm-s390.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/arch/s390/kvm/kvm-s390.c b/arch/s390/kvm/kvm-s390.c index 4638303ba6a8..28f35d2b06cb 100644 --- a/arch/s390/kvm/kvm-s390.c +++ b/arch/s390/kvm/kvm-s390.c @@ -513,9 +513,6 @@ int kvm_vm_ioctl_check_extension(struct kvm *kvm, long ext) else if (sclp.has_esca && sclp.has_64bscao) r = KVM_S390_ESCA_CPU_SLOTS; break; - case KVM_CAP_NR_MEMSLOTS: - r = KVM_USER_MEM_SLOTS; - break; case KVM_CAP_S390_COW: r = MACHINE_HAS_ESOP; break; |