Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756216AbdDMUUW (ORCPT ); Thu, 13 Apr 2017 16:20:22 -0400 Received: from mx1.redhat.com ([209.132.183.28]:50146 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755261AbdDMUUK (ORCPT ); Thu, 13 Apr 2017 16:20:10 -0400 DMARC-Filter: OpenDMARC Filter v1.3.2 mx1.redhat.com 024A3C05974C Authentication-Results: ext-mx08.extmail.prod.ext.phx2.redhat.com; dmarc=none (p=none dis=none) header.from=redhat.com Authentication-Results: ext-mx08.extmail.prod.ext.phx2.redhat.com; spf=pass smtp.mailfrom=rkrcmar@redhat.com DKIM-Filter: OpenDKIM Filter v2.11.0 mx1.redhat.com 024A3C05974C From: =?UTF-8?q?Radim=20Kr=C4=8Dm=C3=A1=C5=99?= To: linux-kernel@vger.kernel.org, kvm@vger.kernel.org Cc: Christoffer Dall , Marc Zyngier , Paolo Bonzini , Christian Borntraeger , Cornelia Huck , James Hogan , Paul Mackerras , Alexander Graf Subject: [PATCH 0/4] KVM: add KVM_CREATE_VM2 to allow dynamic kvm->vcpus array Date: Thu, 13 Apr 2017 22:19:47 +0200 Message-Id: <20170413201951.11939-1-rkrcmar@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.32]); Thu, 13 Apr 2017 20:20:09 +0000 (UTC) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1026 Lines: 27 The basic idea is to let userspace provide the desired maximal number of VCPUs and allocate only necessary memory for them. The goal is to freeze KVM_MAX_VCPUS at its current level and only increase the new KVM_MAX_CONFIGURABLE_VCPUS, probably directly to INT_MAX/KVM_VCPU_ID, so we don't have to worry about it for a while. PPC should be interested in this as they set KVM_MAX_VCPUS to NR_CPUS and probably waste few pages for every guest this way. Radim Krčmář (4): KVM: remove unused __KVM_HAVE_ARCH_VM_ALLOC KVM: allocate kvm->vcpus separately KVM: add KVM_CREATE_VM2 system ioctl KVM: x86: enable configurable MAX_VCPU Documentation/virtual/kvm/api.txt | 28 +++++++++++++++ arch/x86/include/asm/kvm_host.h | 1 + arch/x86/kvm/irq_comm.c | 4 +-- include/linux/kvm_host.h | 23 +++++------- include/uapi/linux/kvm.h | 8 +++++ virt/kvm/kvm_main.c | 76 +++++++++++++++++++++++++++++++++------ 6 files changed, 114 insertions(+), 26 deletions(-) -- 2.12.0