All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Durrant, Paul" <pdurrant@amazon.co.uk>
To: "Durrant, Paul" <pdurrant@amazon.co.uk>,
	"xen-devel@lists.xenproject.org" <xen-devel@lists.xenproject.org>
Cc: Stefano Stabellini <sstabellini@kernel.org>,
	Julien Grall <julien@xen.org>, Wei Liu <wl@xen.org>,
	Jason Andryuk <jandryuk@gmail.com>,
	George Dunlap <George.Dunlap@eu.citrix.com>,
	Andrew Cooper <andrew.cooper3@citrix.com>,
	Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>,
	Ian Jackson <ian.jackson@eu.citrix.com>,
	Jan Beulich <jbeulich@suse.com>,
	Anthony PERARD <anthony.perard@citrix.com>
Subject: Re: [Xen-devel] [PATCH v5 0/7] xl/libxl: domid allocation/preservation changes
Date: Mon, 17 Feb 2020 14:21:06 +0000	[thread overview]
Message-ID: <422d613f712e4cb9adaa6c7890b6e07d@EX13D32EUC003.ant.amazon.com> (raw)
In-Reply-To: <20200131150149.2008-1-pdurrant@amazon.com>

Ping?

> -----Original Message-----
> From: Paul Durrant <pdurrant@amazon.com>
> Sent: 31 January 2020 15:02
> To: xen-devel@lists.xenproject.org
> Cc: Durrant, Paul <pdurrant@amazon.co.uk>; Andrew Cooper
> <andrew.cooper3@citrix.com>; Anthony PERARD <anthony.perard@citrix.com>;
> George Dunlap <George.Dunlap@eu.citrix.com>; Ian Jackson
> <ian.jackson@eu.citrix.com>; Jan Beulich <jbeulich@suse.com>; Jason
> Andryuk <jandryuk@gmail.com>; Julien Grall <julien@xen.org>; Konrad
> Rzeszutek Wilk <konrad.wilk@oracle.com>; Stefano Stabellini
> <sstabellini@kernel.org>; Wei Liu <wl@xen.org>
> Subject: [PATCH v5 0/7] xl/libxl: domid allocation/preservation changes
> 
> Paul Durrant (7):
>   libxl: add definition of INVALID_DOMID to the API
>   libxl_create: make 'soft reset' explicit
>   libxl: generalise libxl__domain_userdata_lock()
>   libxl: add infrastructure to track and query 'recent' domids
>   libxl: allow creation of domains with a specified or random domid
>   xl.conf: introduce 'domid_policy'
>   xl: allow domid to be preserved on save/restore or migrate
> 
>  docs/man/xl.1.pod.in          |  14 +++
>  docs/man/xl.conf.5.pod        |  10 ++
>  tools/examples/xl.conf        |   4 +
>  tools/helpers/xen-init-dom0.c |  30 +++++
>  tools/libxl/libxl.h           |  15 ++-
>  tools/libxl/libxl_create.c    | 125 ++++++++++++++-----
>  tools/libxl/libxl_device.c    |   4 +-
>  tools/libxl/libxl_disk.c      |  12 +-
>  tools/libxl/libxl_dm.c        |   2 +-
>  tools/libxl/libxl_dom.c       |  12 +-
>  tools/libxl/libxl_domain.c    | 218 ++++++++++++++++++++++++++++++++--
>  tools/libxl/libxl_internal.c  |  67 +++++++----
>  tools/libxl/libxl_internal.h  |  30 +++--
>  tools/libxl/libxl_mem.c       |   8 +-
>  tools/libxl/libxl_pci.c       |   4 +-
>  tools/libxl/libxl_types.idl   |   1 +
>  tools/libxl/libxl_usb.c       |   8 +-
>  tools/xl/xl.c                 |  10 ++
>  tools/xl/xl.h                 |   2 +
>  tools/xl/xl_cmdtable.c        |   6 +-
>  tools/xl/xl_migrate.c         |  15 ++-
>  tools/xl/xl_saverestore.c     |  19 ++-
>  tools/xl/xl_utils.h           |   2 -
>  tools/xl/xl_vmcontrol.c       |   3 +
>  xen/include/public/xen.h      |   3 +
>  25 files changed, 517 insertions(+), 107 deletions(-)
> ---
> Cc: Andrew Cooper <andrew.cooper3@citrix.com>
> Cc: Anthony PERARD <anthony.perard@citrix.com>
> Cc: George Dunlap <George.Dunlap@eu.citrix.com>
> Cc: Ian Jackson <ian.jackson@eu.citrix.com>
> Cc: Jan Beulich <jbeulich@suse.com>
> Cc: Jason Andryuk <jandryuk@gmail.com>
> Cc: Julien Grall <julien@xen.org>
> Cc: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
> Cc: Stefano Stabellini <sstabellini@kernel.org>
> Cc: Wei Liu <wl@xen.org>
> --
> 2.20.1


_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xenproject.org
https://lists.xenproject.org/mailman/listinfo/xen-devel

      parent reply	other threads:[~2020-02-17 14:21 UTC|newest]

Thread overview: 21+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-01-31 15:01 [Xen-devel] [PATCH v5 0/7] xl/libxl: domid allocation/preservation changes Paul Durrant
2020-01-31 15:01 ` [Xen-devel] [PATCH v5 1/7] libxl: add definition of INVALID_DOMID to the API Paul Durrant
2020-01-31 15:01 ` [Xen-devel] [PATCH v5 2/7] libxl_create: make 'soft reset' explicit Paul Durrant
2020-01-31 15:01 ` [Xen-devel] [PATCH v5 3/7] libxl: generalise libxl__domain_userdata_lock() Paul Durrant
2020-01-31 15:01 ` [Xen-devel] [PATCH v5 4/7] libxl: add infrastructure to track and query 'recent' domids Paul Durrant
2020-02-17 17:42   ` Ian Jackson
2020-02-18  9:24     ` Durrant, Paul
2020-02-18 11:38       ` Ian Jackson
2020-01-31 15:01 ` [Xen-devel] [PATCH v5 5/7] libxl: allow creation of domains with a specified or random domid Paul Durrant
2020-01-31 17:22   ` Jason Andryuk
2020-02-03  7:50     ` Durrant, Paul
2020-02-17 17:51   ` Ian Jackson
2020-02-18  9:31     ` Durrant, Paul
2020-02-18 11:17       ` Ian Jackson
2020-02-18 11:25         ` Durrant, Paul
2020-02-18 11:47           ` Ian Jackson
2020-02-18 11:57             ` Durrant, Paul
2020-01-31 15:01 ` [Xen-devel] [PATCH v5 6/7] xl.conf: introduce 'domid_policy' Paul Durrant
2020-01-31 15:01 ` [Xen-devel] [PATCH v5 7/7] xl: allow domid to be preserved on save/restore or migrate Paul Durrant
2020-02-17 17:55   ` Ian Jackson
2020-02-17 14:21 ` Durrant, Paul [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=422d613f712e4cb9adaa6c7890b6e07d@EX13D32EUC003.ant.amazon.com \
    --to=pdurrant@amazon.co.uk \
    --cc=George.Dunlap@eu.citrix.com \
    --cc=andrew.cooper3@citrix.com \
    --cc=anthony.perard@citrix.com \
    --cc=ian.jackson@eu.citrix.com \
    --cc=jandryuk@gmail.com \
    --cc=jbeulich@suse.com \
    --cc=julien@xen.org \
    --cc=konrad.wilk@oracle.com \
    --cc=sstabellini@kernel.org \
    --cc=wl@xen.org \
    --cc=xen-devel@lists.xenproject.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.