From mboxrd@z Thu Jan 1 00:00:00 1970 From: Konrad Rzeszutek Wilk Subject: Is: [GIT PULL) (claim.v17) against Xen 4.3-rc0. Was:Re: [PATCH v16] claim and its friends for allocating multiple self-ballooning guests. Date: Tue, 16 Apr 2013 11:33:09 -0400 Message-ID: <20130416153309.GB2799@phenom.dumpdata.com> References: <1365800181-9877-1-git-send-email-konrad.wilk@oracle.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: Content-Disposition: inline In-Reply-To: <1365800181-9877-1-git-send-email-konrad.wilk@oracle.com> List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xen.org Errors-To: xen-devel-bounces@lists.xen.org To: xen-devel@lists.xensource.com, Ian.Campbell@citrix.com, Ian.Jackson@eu.citrix.com Cc: george.dunlap@eu.citrix.com, dan.magenheimer@oracle.com List-Id: xen-devel@lists.xenproject.org On Fri, Apr 12, 2013 at 04:56:14PM -0400, Konrad Rzeszutek Wilk wrote: I've updated a new version (v17), to be: - Added 'Acked-by' on the last two patches - Restored the inadvertent drive-by-line-killing. > Changes since v15: > - Added 'Acked-by: Ian' on many patches. > - Fixed 'xl claims' call to be smarter about reporting information (reworked > a patch). > - Fixed 'xl info', free_memory: to also take into account outstanding claims > (new patch) .. snip. > These patches are also visible at: > > git://xenbits.xen.org/people/konradwilk/xen.git claim.v16 And the new version is: git://xenbits.xen.org/people/konradwilk/xen.git claim.v17 All patches are Acked-by. There are two bugs that need to be fixed before Xen 4.3 comes out: 1). Ian Jacksons' observation about race: * We need a race-free version of the hypercall API. * We need a race-free version of the xc API. * We need a race-free version of the libxl API. 2). defbool vs int and the 'claim_mode' usage. docs/man/xl.conf.pod.5 | 43 +++++++++++++++++++++++++++++ docs/man/xl.pod.1 | 39 +++++++++++++++++++++++++- tools/examples/xl.conf | 6 ++++ tools/libxc/xc_dom.h | 1 + tools/libxc/xc_dom_x86.c | 12 ++++++++ tools/libxc/xc_domain.c | 31 +++++++++++++++++++++ tools/libxc/xc_hvm_build_x86.c | 23 +++++++++++++--- tools/libxc/xenctrl.h | 7 +++++ tools/libxc/xenguest.h | 2 ++ tools/libxl/libxl.c | 19 +++++++++++-- tools/libxl/libxl.h | 2 +- tools/libxl/libxl_create.c | 2 ++ tools/libxl/libxl_dom.c | 3 +- tools/libxl/libxl_types.idl | 3 +- tools/libxl/xl.c | 5 ++++ tools/libxl/xl.h | 2 ++ tools/libxl/xl_cmdimpl.c | 62 +++++++++++++++++++++++++++++++++++++----- tools/libxl/xl_cmdtable.c | 6 ++++ 18 files changed, 251 insertions(+), 17 deletions(-) Dan Magenheimer (2): xc: use XENMEM_claim_pages hypercall during guest creation. xc: export outstanding_pages value in xc_dominfo structure. Konrad Rzeszutek Wilk (5): xl: Implement XENMEM_claim_pages support via 'claim_mode' global config xl: 'xl info' print outstanding claims if enabled (claim_mode=1 in xl.conf) xl: export 'outstanding_pages' value from xcinfo xl: 'xl claims' print outstanding per domain claims xl: Fix 'free_memory' to include outstanding_claims value.