From mboxrd@z Thu Jan 1 00:00:00 1970 From: Paolo Bonzini Subject: Re: [PATCH] KVM: nVMX: Don't return error on nested bitmap memory allocation failure Date: Wed, 29 Apr 2015 18:39:56 +0200 Message-ID: <5541095C.8050305@redhat.com> References: <554083D4.8090906@siemens.com> <5540D735.5030103@siemens.com> <5540DB6E.4070108@redhat.com> Mime-Version: 1.0 Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 7bit Cc: Jan Kiszka , kvm@vger.kernel.org, Wincy Van , linux-kernel@vger.kernel.org To: Bandan Das Return-path: In-Reply-To: Sender: linux-kernel-owner@vger.kernel.org List-Id: kvm.vger.kernel.org On 29/04/2015 18:08, Bandan Das wrote: >>>> >> > Yeah... I hear you. Ok, let me put it this way - Assume that we can >>>> >> > defer this allocation up until the point that the nested subsystem is >>>> >> > actually used i.e L1 tries running a guest and we try to allocate this >>>> >> > area. If get_free_page() failed in that case, would we still want to >>>> >> > kill L1 too ? I guess no. >>> >> >>> >> We could block the hypervisor thread on the allocation, just like it >>> >> would block on faults for swapped out pages or new ones that have to be >>> >> reclaimed from the page cache first. > So, block on a failure hoping that eventually it will succeed ? > >> > In that case we should avoid making the allocation GFP_ATOMIC to begin with. >> > >> > If a GFP_KERNEL allocation failed, returning -ENOMEM from KVM_RUN (which >> > practically means killing the guest) would actually be a very real >> > possibility. > Sorry Paolo, I missed your point. Isn't the allocation already GFP_KERNEL ? I mean if it were done lazily as in your thought-experiment. Then: - a GFP_ATOMIC allocation would be bad - a GFP_KERNEL allocation would block like Jan said; if it failed, I would be okay with returning -ENOMEM to userspace, even if that in practice means killing the guest. Paolo