From a988b910ef816ed57e1cecbec14e98e906453f91 Mon Sep 17 00:00:00 2001 From: Avi Kivity Date: Wed, 20 Feb 2008 11:59:20 +0200 Subject: KVM: Add API for determining the number of supported memory slots Signed-off-by: Avi Kivity --- arch/x86/kvm/x86.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'arch/x86/kvm/x86.c') diff --git a/arch/x86/kvm/x86.c b/arch/x86/kvm/x86.c index 955d2eeac96..b7c32f63671 100644 --- a/arch/x86/kvm/x86.c +++ b/arch/x86/kvm/x86.c @@ -814,6 +814,9 @@ int kvm_dev_ioctl_check_extension(long ext) case KVM_CAP_NR_VCPUS: r = KVM_MAX_VCPUS; break; + case KVM_CAP_NR_MEMSLOTS: + r = KVM_MEMORY_SLOTS; + break; default: r = 0; break; -- cgit v1.2.3-18-g5258