Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752029AbdHQH37 (ORCPT ); Thu, 17 Aug 2017 03:29:59 -0400 Received: from mx1.redhat.com ([209.132.183.28]:36864 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751752AbdHQH34 (ORCPT ); Thu, 17 Aug 2017 03:29:56 -0400 DMARC-Filter: OpenDMARC Filter v1.3.2 mx1.redhat.com EAB356A6D1 Authentication-Results: ext-mx04.extmail.prod.ext.phx2.redhat.com; dmarc=none (p=none dis=none) header.from=redhat.com Authentication-Results: ext-mx04.extmail.prod.ext.phx2.redhat.com; spf=fail smtp.mailfrom=david@redhat.com Subject: Re: [PATCH RFC 0/2] KVM: use RCU to allow dynamic kvm->vcpus array To: =?UTF-8?B?UmFkaW0gS3LEjW3DocWZ?= , linux-kernel@vger.kernel.org, kvm@vger.kernel.org, linux-mips@linux-mips.org, kvm-ppc@vger.kernel.org, linux-s390@vger.kernel.org, linux-arm-kernel@lists.infradead.org Cc: Paolo Bonzini , Christoffer Dall , Marc Zyngier , Christian Borntraeger , Cornelia Huck , James Hogan , Paul Mackerras , Alexander Graf References: <20170816194037.9460-1-rkrcmar@redhat.com> From: David Hildenbrand Organization: Red Hat GmbH Message-ID: Date: Thu, 17 Aug 2017 09:29:51 +0200 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.2.1 MIME-Version: 1.0 In-Reply-To: <20170816194037.9460-1-rkrcmar@redhat.com> Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 8bit X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.28]); Thu, 17 Aug 2017 07:29:56 +0000 (UTC) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1688 Lines: 45 On 16.08.2017 21:40, Radim Krčmář wrote: > The goal is to increase KVM_MAX_VCPUS without worrying about memory > impact of many small guests. > > This is a second out of three major "dynamic" options: > 1) size vcpu array at VM creation time > 2) resize vcpu array when new VCPUs are created > 3) use a lockless list/tree for VCPUs > > The disadvantage of (1) is its requirement on userspace changes and > limited flexibility because userspace must provide the maximal count on > start. The main advantage is that kvm->vcpus will work like it does > now. It has been posted as "[PATCH 0/4] KVM: add KVM_CREATE_VM2 to > allow dynamic kvm->vcpus array", > http://www.mail-archive.com/linux-kernel@vger.kernel.org/msg1377285.html > > The main problem of (2), this series, is that we cannot extend the array > in place and therefore require some kind of protection when moving it. > RCU seems best, but it makes the code slower and harder to deal with. > The main advantage is that we do not need userspace changes. > > The third option wasn't explored yet. It would solve the ugly > kvm_for_each_vcpu() of (2), but kvm_get_vcpu() would become linear. > (We could mitigate it by having list of vcpu arrays and A lockless > sequentially growing "tree" would be logarithmic and not that much more > complicated to implement.) That sounds interesting but also too complicated. > > Which option do you think is the best? I actually think the RCU variant doesn't look bad at all. Execution time should be ok. As Alex said, doubling the size every time we run out of space could be done. I clearly favor a solution that doesn't require user space changes. -- Thanks, David