Received: by 2002:ac0:a5a6:0:0:0:0:0 with SMTP id m35-v6csp4099592imm; Tue, 25 Sep 2018 11:17:27 -0700 (PDT) X-Google-Smtp-Source: ACcGV635bte4tOSXaso6sEhrcgWOtVzFt80rwd6+ieXFl0Hrg0hYiApi2UOkN0mJkailsRCheV/u X-Received: by 2002:a63:5ec5:: with SMTP id s188-v6mr2124398pgb.126.1537899447821; Tue, 25 Sep 2018 11:17:27 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1537899447; cv=none; d=google.com; s=arc-20160816; b=bOOKv5weNeo77x3GE/lu9k3ZmbrQwc1VAfbnUbXQFvBGOUtduS5PyXo7cwdx2wHU4Y qIbvj6S+q6V6s5k2wgjG2MQXE+FF7IxfPtsWrLYQv0NGgD260GJ2rM1OvQ6h5ZVCjiMe Cvs9znjqXWvTfAEkS88Fzh9K6Y7/ziKXSwedvs/NYd96tfMh4e2VUoPwyEFcd5U/qkuR w9vL7AYnR/mZtidqeZIsptg2q6iKji7PPnSXNyFcRbRdi2/U2TnjUJuzIg41OTQ1g4wC W0bro66dHDvt+Z3c3qKpPip0G7RxUbVIOgzKup9I6QiipCF3RwBDiInFr5lsVJHkxBsa aSLQ== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:user-agent:in-reply-to :content-disposition:mime-version:references:message-id:subject:cc :to:from:date; bh=7zfRqw+QUDojG80nAl92OjKTAEmjfi8aFkVi2C3N6JU=; b=SC6cz4asZ/0bVMuisEso73LK3FasjWOGNUyRYmTCQ8KpA80hHgHGvI+RLYJmE5jgN1 ouZUWtmz3UgjFt08UsLOo2wajuH174Xw9floZ2vFlSTzyhnWm9u7fHGDhkaDgb4KgNiu bcbeMAyo8UVd7BPem+ONlVWbe+0tkWQ745TNypWPA0rqnfMmYdnCiPDXUTF5bT+h8Qnd 3Ybf8QMUMv5YeOu9r8hO7LC4rqT7kKPK9QDwWjszG6zyxTCQ5gKO6buIYKdJfSXPxOu7 Jfog+QRSCZLPtJKTXPxfzde6jPqe3DAXyjdFYQBfiqKxjOuGI++XAYRMt6RMsFAQ+dAH W6mQ== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id 63-v6si2658161pfg.67.2018.09.25.11.17.12; Tue, 25 Sep 2018 11:17:27 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727370AbeIZAZa (ORCPT + 99 others); Tue, 25 Sep 2018 20:25:30 -0400 Received: from mail.linuxfoundation.org ([140.211.169.12]:51734 "EHLO mail.linuxfoundation.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726335AbeIZAZ3 (ORCPT ); Tue, 25 Sep 2018 20:25:29 -0400 Received: from localhost (ip-213-127-77-73.ip.prioritytelecom.net [213.127.77.73]) by mail.linuxfoundation.org (Postfix) with ESMTPSA id 5E6951028; Tue, 25 Sep 2018 18:16:44 +0000 (UTC) Date: Tue, 25 Sep 2018 20:15:48 +0200 From: Greg Kroah-Hartman To: Nadav Amit Cc: Arnd Bergmann , linux-kernel@vger.kernel.org, Xavier Deguillard , "Michael S. Tsirkin" , Jason Wang , linux-mm@kvack.org, virtualization@lists.linux-foundation.org Subject: Re: [PATCH v2 00/20] vmw_balloon: compaction, shrinker, 64-bit, etc. Message-ID: <20180925181548.GB25458@kroah.com> References: <20180920173026.141333-1-namit@vmware.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20180920173026.141333-1-namit@vmware.com> User-Agent: Mutt/1.10.1 (2018-07-13) Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Thu, Sep 20, 2018 at 10:30:06AM -0700, Nadav Amit wrote: > This patch-set adds the following enhancements to the VMware balloon > driver: > > 1. Balloon compaction support. > 2. Report the number of inflated/deflated ballooned pages through vmstat. > 3. Memory shrinker to avoid balloon over-inflation (and OOM). > 4. Support VMs with memory limit that is greater than 16TB. > 5. Faster and more aggressive inflation. > > To support compaction we wish to use the existing infrastructure. > However, we need to make slight adaptions for it. We add a new list > interface to balloon-compaction, which is more generic and efficient, > since it does not require as many IRQ save/restore operations. We leave > the old interface that is used by the virtio balloon. > > Big parts of this patch-set are cleanup and documentation. Patches 1-13 > simplify the balloon code, document its behavior and allow the balloon > code to run concurrently. The support for concurrency is required for > compaction and the shrinker interface. > > For documentation we use the kernel-doc format. We are aware that the > balloon interface is not public, but following the kernel-doc format may > be useful one day. I applied the first 16 patches. Please fix up 17 and resend. thanks, greg k-h