All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v7 0/9] domain context infrastructure
@ 2020-08-18 10:30 Paul Durrant
  2020-08-18 10:30 ` [PATCH v7 1/9] xen/common: introduce a new framework for save/restore of 'domain' context Paul Durrant
                   ` (8 more replies)
  0 siblings, 9 replies; 23+ messages in thread
From: Paul Durrant @ 2020-08-18 10:30 UTC (permalink / raw)
  To: xen-devel
  Cc: Paul Durrant, Andrew Cooper, Daniel De Graaf, George Dunlap,
	Ian Jackson, Jan Beulich, Julien Grall,
	Marek Marczykowski-Górecki, Roger Pau Monné,
	Stefano Stabellini, Volodymyr Babchuk, Wei Liu

From: Paul Durrant <pdurrant@amazon.com>

The first 3 patches of the series are largely the same as v6 but patches
4 thru 9 are basically new (patch 7 being inherited from v6 but heavily
re-worked).
Patch 4 is cleanup work that I noticed needed doing whilst working patch 5.

Paul Durrant (9):
  xen/common: introduce a new framework for save/restore of 'domain'
    context
  xen/common/domctl: introduce XEN_DOMCTL_get/setdomaincontext
  tools/misc: add xen-domctx to present domain context
  docs/specs: add missing definitions to libxc-migration-stream
  docs / tools: specific migration v4 to include DOMAIN_CONTEXT
  tools/libxc: split restore handler handle_shared_info() functionality
  common/domain: add a domain context record for shared_info...
  x86/time: add a domain context record for tsc_info...
  tools/libxc: add DOMAIN_CONTEXT records to the migration stream...

 .gitignore                               |   1 +
 docs/specs/libxc-migration-stream.pandoc |  69 ++++-
 tools/flask/policy/modules/xen.if        |   4 +-
 tools/libxc/include/xenctrl.h            |   5 +
 tools/libxc/xc_domain.c                  |  56 ++++
 tools/libxc/xc_sr_common.c               |   1 +
 tools/libxc/xc_sr_common.h               |   3 +
 tools/libxc/xc_sr_common_x86.c           |  20 --
 tools/libxc/xc_sr_common_x86.h           |   6 -
 tools/libxc/xc_sr_restore.c              |  45 +++-
 tools/libxc/xc_sr_restore_x86_pv.c       |  31 ++-
 tools/libxc/xc_sr_save.c                 |  52 +++-
 tools/libxc/xc_sr_save_x86_hvm.c         |   5 -
 tools/libxc/xc_sr_save_x86_pv.c          |  22 --
 tools/libxc/xc_sr_stream_format.h        |   1 +
 tools/misc/Makefile                      |   4 +
 tools/misc/xen-domctx.c                  | 290 +++++++++++++++++++++
 tools/python/xen/migration/libxc.py      |   2 +
 xen/arch/x86/time.c                      |  34 ++-
 xen/common/Makefile                      |   1 +
 xen/common/domain.c                      | 114 ++++++++
 xen/common/domctl.c                      | 173 +++++++++++++
 xen/common/save.c                        | 315 +++++++++++++++++++++++
 xen/include/asm-x86/time.h               |   5 +-
 xen/include/public/arch-arm/hvm/save.h   |   5 +
 xen/include/public/arch-x86/hvm/save.h   |   5 +
 xen/include/public/domctl.h              |  41 +++
 xen/include/public/save.h                | 111 ++++++++
 xen/include/xen/save.h                   | 170 ++++++++++++
 xen/xsm/flask/hooks.c                    |   6 +
 xen/xsm/flask/policy/access_vectors      |   4 +
 31 files changed, 1525 insertions(+), 76 deletions(-)
 create mode 100644 tools/misc/xen-domctx.c
 create mode 100644 xen/common/save.c
 create mode 100644 xen/include/public/save.h
 create mode 100644 xen/include/xen/save.h
---
Cc: Andrew Cooper <andrew.cooper3@citrix.com>
Cc: Daniel De Graaf <dgdegra@tycho.nsa.gov>
Cc: George Dunlap <george.dunlap@citrix.com>
Cc: Ian Jackson <ian.jackson@eu.citrix.com>
Cc: Jan Beulich <jbeulich@suse.com>
Cc: Julien Grall <julien@xen.org>
Cc: "Marek Marczykowski-Górecki" <marmarek@invisiblethingslab.com>
Cc: "Roger Pau Monné" <roger.pau@citrix.com>
Cc: Stefano Stabellini <sstabellini@kernel.org>
Cc: Volodymyr Babchuk <Volodymyr_Babchuk@epam.com>
Cc: Wei Liu <wl@xen.org>
-- 
2.20.1



^ permalink raw reply	[flat|nested] 23+ messages in thread

end of thread, other threads:[~2020-09-15 14:20 UTC | newest]

Thread overview: 23+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-08-18 10:30 [PATCH v7 0/9] domain context infrastructure Paul Durrant
2020-08-18 10:30 ` [PATCH v7 1/9] xen/common: introduce a new framework for save/restore of 'domain' context Paul Durrant
2020-08-26 13:32   ` Jan Beulich
2020-08-26 13:53     ` Jan Beulich
2020-09-04 17:31       ` Paul Durrant
2020-08-18 10:30 ` [PATCH v7 2/9] xen/common/domctl: introduce XEN_DOMCTL_get/setdomaincontext Paul Durrant
2020-08-18 10:30 ` [PATCH v7 3/9] tools/misc: add xen-domctx to present domain context Paul Durrant
2020-08-18 10:30 ` [PATCH v7 4/9] docs/specs: add missing definitions to libxc-migration-stream Paul Durrant
2020-08-18 10:30 ` [PATCH v7 5/9] docs / tools: specific migration v4 to include DOMAIN_CONTEXT Paul Durrant
2020-08-18 10:30 ` [PATCH v7 6/9] tools/libxc: split restore handler handle_shared_info() functionality Paul Durrant
2020-08-18 10:30 ` [PATCH v7 7/9] common/domain: add a domain context record for shared_info Paul Durrant
2020-08-26 13:57   ` Jan Beulich
2020-09-04 17:29     ` Paul Durrant
2020-09-07  7:01       ` Jan Beulich
2020-09-07  7:11         ` [EXTERNAL] " Paul Durrant
2020-09-15 14:20       ` Durrant, Paul
2020-08-18 10:30 ` [PATCH v7 8/9] x86/time: add a domain context record for tsc_info Paul Durrant
2020-08-26 14:02   ` Jan Beulich
2020-08-28 11:08     ` [EXTERNAL] " Paul Durrant
2020-08-28 15:53       ` Jan Beulich
2020-08-28 16:36         ` Paul Durrant
2020-08-31  7:23           ` Jan Beulich
2020-08-18 10:30 ` [PATCH v7 9/9] tools/libxc: add DOMAIN_CONTEXT records to the migration stream Paul Durrant

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.