From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-0.8 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS autolearn=no autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 16922C76195 for ; Wed, 17 Jul 2019 10:29:01 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id DA92C217F9 for ; Wed, 17 Jul 2019 10:29:00 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726900AbfGQK25 (ORCPT ); Wed, 17 Jul 2019 06:28:57 -0400 Received: from mx1.redhat.com ([209.132.183.28]:48164 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1725936AbfGQK25 (ORCPT ); Wed, 17 Jul 2019 06:28:57 -0400 Received: from smtp.corp.redhat.com (int-mx08.intmail.prod.int.phx2.redhat.com [10.5.11.23]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 11E6F335D6; Wed, 17 Jul 2019 10:28:56 +0000 (UTC) Received: from redhat.com (ovpn-120-247.rdu2.redhat.com [10.10.120.247]) by smtp.corp.redhat.com (Postfix) with SMTP id 1938919D7E; Wed, 17 Jul 2019 10:28:13 +0000 (UTC) Date: Wed, 17 Jul 2019 06:28:12 -0400 From: "Michael S. Tsirkin" To: Alexander Duyck Cc: Nitesh Narayan Lal , kvm list , David Hildenbrand , Dave Hansen , LKML , linux-mm , Andrew Morton , Yang Zhang , pagupta@redhat.com, Rik van Riel , Konrad Rzeszutek Wilk , lcapitulino@redhat.com, wei.w.wang@intel.com, Andrea Arcangeli , Paolo Bonzini , dan.j.williams@intel.com, Alexander Duyck Subject: Re: [PATCH v1 6/6] virtio-balloon: Add support for aerating memory via hinting Message-ID: <20190717055804-mutt-send-email-mst@kernel.org> References: <20190619222922.1231.27432.stgit@localhost.localdomain> <20190619223338.1231.52537.stgit@localhost.localdomain> <20190716055017-mutt-send-email-mst@kernel.org> <20190716115535-mutt-send-email-mst@kernel.org> <20190716125845-mutt-send-email-mst@kernel.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: X-Scanned-By: MIMEDefang 2.84 on 10.5.11.23 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.38]); Wed, 17 Jul 2019 10:28:56 +0000 (UTC) Sender: kvm-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: kvm@vger.kernel.org On Tue, Jul 16, 2019 at 02:06:59PM -0700, Alexander Duyck wrote: > On Tue, Jul 16, 2019 at 10:41 AM Michael S. Tsirkin wrote: > > > > > > > This is what I am saying. Having watched that patchset being developed, > > > > I think that's simply because processing blocks required mm core > > > > changes, which Wei was not up to pushing through. > > > > > > > > > > > > If we did > > > > > > > > while (1) { > > > > alloc_pages > > > > add_buf > > > > get_buf > > > > free_pages > > > > } > > > > > > > > We'd end up passing the same page to balloon again and again. > > > > > > > > So we end up reserving lots of memory with alloc_pages instead. > > > > > > > > What I am saying is that now that you are developing > > > > infrastructure to iterate over free pages, > > > > FREE_PAGE_HINT should be able to use it too. > > > > Whether that's possible might be a good indication of > > > > whether the new mm APIs make sense. > > > > > > The problem is the infrastructure as implemented isn't designed to do > > > that. I am pretty certain this interface will have issues with being > > > given small blocks to process at a time. > > > > > > Basically the design for the FREE_PAGE_HINT feature doesn't really > > > have the concept of doing things a bit at a time. It is either > > > filling, stopped, or done. From what I can tell it requires a > > > configuration change for the virtio balloon interface to toggle > > > between those states. > > > > Maybe I misunderstand what you are saying. > > > > Filling state can definitely report things > > a bit at a time. It does not assume that > > all of guest free memory can fit in a VQ. > > I think where you and I may differ is that you are okay with just > pulling pages until you hit OOM, or allocation failures. Do I have > that right? This is exactly what the current code does. But that's an implementation detail which came about because we failed to find any other way to iterate over free blocks. > In my mind I am wanting to perform the hinting on a small > block at a time and work through things iteratively. > > The problem is the FREE_PAGE_HINT doesn't have the option of returning > pages until all pages have been pulled. It is run to completion and > will keep filling the balloon until an allocation fails and the host > says it is done. OK so there are two points. One is that FREE_PAGE_HINT does not need to allocate a page at all. It really just wants to iterate over free pages. The reason FREE_PAGE_HINT does not free up pages until we finished iterating over the free list it not a hypervisor API. The reason is we don't want to keep getting the same address over and over again. > I would prefer to avoid that as I prefer to simply > notify the host of a fixed block of pages at a time and let it process > without having to have a thread on each side actively pushing pages, > or listening for the incoming pages. Right. And FREE_PAGE_HINT can go even further. It can push a page and let linux use it immediately. It does not even need to wait for host to process anything unless the VQ gets full. > > > > > > The basic idea with the bubble hinting was to essentially create mini > > > > > balloons. As such I had based the code off of the balloon inflation > > > > > code. The only spot where it really differs is that I needed the > > > > > ability to pass higher order pages so I tweaked thinks and passed > > > > > "hints" instead of "pfns". > > > > > > > > And that is fine. But there isn't really such a big difference with > > > > FREE_PAGE_HINT except FREE_PAGE_HINT triggers upon host request and not > > > > in response to guest load. > > > > > > I disagree, I believe there is a significant difference. > > > > Yes there is, I just don't think it's in the iteration. > > The iteration seems to be useful to hinting. > > I agree that iteration is useful to hinting. The problem is the > FREE_PAGE_HINT code isn't really designed to be iterative. It is > designed to run with a polling thread on each side and it is meant to > be run to completion. Absolutely. But that's a bug I think. > > > The > > > FREE_PAGE_HINT code was implemented to be more of a streaming > > > interface. > > > > It's implemented like this but it does not follow from > > the interface. The implementation is a combination of > > attempts to minimize # of exits and minimize mm core changes. > > The problem is the interface doesn't have a good way of indicating > that it is done with a block of pages. > > So what I am probably looking at if I do a sg implementation for my > hinting is to provide one large sg block for all 32 of the pages I > might be holding. Right now if you pass an sg it will try to allocate a buffer on demand for you. If this is a problem I could come up with a new API that lets caller allocate the buffer. Let me know. > I'm assuming that will still be processed as one > contiguous block. With that I can then at least maintain a single > response per request. Why do you care? Won't a counter of outstanding pages be enough? Down the road maybe we could actually try to pipeline things a bit. So send 32 pages once you get 16 of these back send 16 more. Better for SMP configs and does not hurt non-SMP too much. I am not saying we need to do it right away though. > > > This is one of the things Linus kept complaining about in > > > his comments. This code attempts to pull in ALL of the higher order > > > pages, not just a smaller block of them. > > > > It wants to report all higher order pages eventually, yes. > > But it's absolutely fine to report a chunk and then wait > > for host to process the chunk before reporting more. > > > > However, interfaces we came up with for this would call > > into virtio with a bunch of locks taken. > > The solution was to take pages off the free list completely. > > That in turn means we can't return them until > > we have processed all free memory. > > I get that. The problem is the interface is designed around run to > completion. For example it will sit there in a busy loop waiting for a > free buffer because it knows the other side is suppose to be > processing the pages already. I didn't get this part. > > > Honestly the difference is > > > mostly in the hypervisor interface than what is needed for the kernel > > > interface, however the design of the hypervisor interface would make > > > doing things more incrementally much more difficult. > > > > OK that's interesting. The hypervisor interface is not > > documented in the spec yet. Let me take a stub at a writeup now. So: > > > > > > > > - hypervisor requests reporting by modifying command ID > > field in config space, and interrupting guest > > > > - in response, guest sends the command ID value on a special > > free page hinting VQ, > > followed by any number of buffers. Each buffer is assumed > > to be the address and length of memory that was > > unused *at some point after the time when command ID was sent*. > > > > Note that hypervisor takes pains to handle the case > > where memory is actually no longer free by the time > > it gets the memory. > > This allows guest driver to take more liberties > > and free pages without waiting for guest to > > use the buffers. > > > > This is also one of the reason we call this a free page hint - > > the guarantee that page is free is a weak one, > > in that sense it's more of a hint than a promise. > > That helps guarantee we don't create OOM out of blue. I would like to stress the last paragraph above. > > > > - guest eventually sends a special buffer signalling to > > host that it's done sending free pages. > > It then stops reporting until command id changes. > > The pages are not freed back to the guest until the host reports that > it is "DONE" via a configuration change. Doing that stops any further > progress, and attempting to resume will just restart from the > beginning. Right but it's not a requirement. Host does not assume this at all. It's done like this simply because we can't iterate over pages with the existing API. > The big piece this design is missing is the incremental notification > pages have been processed. The existing code just fills the vq with > pages and keeps doing it until it cannot allocate any more pages. We > would have to add logic to stop, flush, and resume to the existing > framework. But not to the hypervisor interface. Hypervisor is fine with pages being reused immediately. In fact, even before they are processed. > > - host can restart the process at any time by > > updating command ID. That will make guest stop > > and start from the beginning. > > > > - host can also stop the process by specifying a special > > command ID value. > > > > > > ========= > > > > > > Now let's compare to what you have here: > > > > - At any time after boot, guest walks over free memory and sends > > addresses as buffers to the host > > > > - Memory reported is then guaranteed to be unused > > until host has used the buffers > > > > > > Is above a fair summary? > > > > So yes there's a difference but the specific bit of chunking is same > > imho. > > The big difference is that I am returning the pages after they are > processed, while FREE_PAGE_HINT doesn't and isn't designed to. It doesn't but the hypervisor *is* designed to support that. > The > problem is the interface doesn't allow for a good way to identify that > any given block of pages has been processed and can be returned. And that's because FREE_PAGE_HINT does not care. It can return any page at any point even before hypervisor saw it. > Instead pages go in, but they don't come out until the configuration > is changed and "DONE" is reported. The act of reporting "DONE" will > reset things and start them all over which kind of defeats the point. Right. But if you consider how we are using the shrinker you will see that it's kind of broken. For example not keeping track of allocated pages means the count we return is broken while reporting is active. I looked at fixing it but really if we can just stop allocating memory that would be way cleaner. For example we allocate pages until shrinker kicks in. Fair enough but in fact many it would be better to do the reverse: trigger shrinker and then send as many free pages as we can to host. -- MST