Received: by 2002:ac0:a5a6:0:0:0:0:0 with SMTP id m35-v6csp5163778imm; Tue, 18 Sep 2018 05:27:58 -0700 (PDT) X-Google-Smtp-Source: ANB0VdangvPf/0x8gpVz9hYcnzJ7CjY+YyuEmqRcT228w2GVcMudDIHs7DyEptt5LUDjG5MOifA1 X-Received: by 2002:a63:2e09:: with SMTP id u9-v6mr28189851pgu.294.1537273678073; Tue, 18 Sep 2018 05:27:58 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1537273678; cv=none; d=google.com; s=arc-20160816; b=WTmtiTlaB8pVzyFZmjYPQXa3E45WAbIoPomGJPJ7EdsaN6tTJ76tWFO0xM+iNT9Xro l4Hdq6x3Zi1Q1D1za5M6BQK03wXFEBkYaFicweQgBe5e7uFwUm2wMsN3mG+NdmbWDR0l d8H/4O3jh3PXTE5dxtcuVLTH7x2LmrVQco+zRHCWwd6MQO++Nil2jRCLgm4TntJW9Cb0 P4PrhJsCjcpbkUxwyodFsqfhXDco4gYnktT8kc7mgjVIqN1pvJ8DZZUYxZCuvkLEZRxk WntVmYWLSCRb9CuXslm0yNjBFimcUWgeFXF01lHocnenPBwCKGRsEbukNm4txKaUX0N+ kS9A== 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=d3O2FIkVuI079HVhApJOskRGiMVQlTZg+qB4GzI0WhE=; b=m+ExW5VnuukiKYbdqYzIVjSCIu/FjifZrt/dJZVwkFo/ifnBtNYosNBHD3uUyPdssV hZDz6JsZYaZ6okys7PopQ2jlc0ikevgXUbCUBZ6N7qLNNHobpDK8if4RIDoVx27GUnVz oSvCoIFCffJr4bK0GW7b7QeiSXgFmiNElF3hfESczNlZfKzo52P3SUT7AbqUOKkbVlQ7 jhe/zBBeA0bj4xVbAKoII1DVdd0/4BXfXkPIsANlKMW3usdIBbgG3Yky/lcUhVUZdboZ QusZtKd3peEdGpLy+1C7pZ01tGS2fl9wD7Am1f7gh8tMk9haIBF2Q2Y77jNwrKDSh43L 9wzA== 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 n18-v6si3416672pgf.529.2018.09.18.05.27.39; Tue, 18 Sep 2018 05:27:58 -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 S1729234AbeIRR7z (ORCPT + 99 others); Tue, 18 Sep 2018 13:59:55 -0400 Received: from mail.linuxfoundation.org ([140.211.169.12]:58744 "EHLO mail.linuxfoundation.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1728631AbeIRR7z (ORCPT ); Tue, 18 Sep 2018 13:59:55 -0400 Received: from localhost (unknown [147.67.4.98]) by mail.linuxfoundation.org (Postfix) with ESMTPSA id 06068C8A; Tue, 18 Sep 2018 12:27:32 +0000 (UTC) Date: Tue, 18 Sep 2018 14:27:29 +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 00/19] vmw_balloon: compaction, shrinker, 64-bit, etc. Message-ID: <20180918122729.GA13598@kroah.com> References: <20180918063853.198332-1-namit@vmware.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20180918063853.198332-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 Mon, Sep 17, 2018 at 11:38:34PM -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. kbuild seems to not like this patch series, so I'm going to drop it from my queue and wait for a v2 respin before looking at it. thanks, greg k-h