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 376F2C76195 for ; Thu, 18 Jul 2019 20:49:17 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 14ADD21849 for ; Thu, 18 Jul 2019 20:49:17 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1728022AbfGRUtN (ORCPT ); Thu, 18 Jul 2019 16:49:13 -0400 Received: from mx1.redhat.com ([209.132.183.28]:51386 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726040AbfGRUtN (ORCPT ); Thu, 18 Jul 2019 16:49:13 -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 40A2230B8E03; Thu, 18 Jul 2019 20:49:12 +0000 (UTC) Received: from redhat.com (ovpn-120-147.rdu2.redhat.com [10.10.120.147]) by smtp.corp.redhat.com (Postfix) with SMTP id D4D7F19D7A; Thu, 18 Jul 2019 20:48:57 +0000 (UTC) Date: Thu, 18 Jul 2019 16:48:56 -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: <20190718164656-mutt-send-email-mst@kernel.org> References: <20190716115535-mutt-send-email-mst@kernel.org> <20190716125845-mutt-send-email-mst@kernel.org> <20190717055804-mutt-send-email-mst@kernel.org> <20190718003211-mutt-send-email-mst@kernel.org> <20190718162040-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.47]); Thu, 18 Jul 2019 20:49:12 +0000 (UTC) Sender: kvm-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: kvm@vger.kernel.org On Thu, Jul 18, 2019 at 01:34:03PM -0700, Alexander Duyck wrote: > On Thu, Jul 18, 2019 at 1:24 PM Michael S. Tsirkin wrote: > > > > On Thu, Jul 18, 2019 at 08:34:37AM -0700, Alexander Duyck wrote: > > > > > > 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. > > > > > > > > > > I'm not sure I understand this last part. > > > > > > > > Oh basically what I am saying is this: one of the reasons to use page > > > > hinting is when host is short on memory. In that case, why don't we use > > > > shrinker to ask kernel drivers to free up memory? Any memory freed could > > > > then be reported to host. > > > > > > Didn't the balloon driver already have a feature like that where it > > > could start shrinking memory if the host was under memory pressure? If > > > so how would adding another one add much value. > > > > Well fundamentally the basic balloon inflate kind of does this, yes :) > > > > The difference with what I am suggesting is that balloon inflate tries > > to aggressively achieve a specific goal of freed memory. We could have a > > weaker "free as much as you can" that is still stronger than free page > > hint which as you point out below does not try to free at all, just > > hints what is already free. > > Yes, but why wait until the host is low on memory? It can come about for a variety of reasons, such as other VMs being aggressive, or ours aggressively caching stuff in memory. > With my > implementation we can perform the hints in the background for a low > cost already. So why should we wait to free up memory when we could do > it immediately. Why let things get to the state where the host is > under memory pressure when the guests can be proactively freeing up > the pages and improving performance as a result be reducing swap > usage? You are talking about sending free memory to host. Fair enough but if you have drivers that aggressively allocate memory then there won't be that much free guest memory without invoking a shrinker. -- MST