xen-devel.lists.xenproject.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v1 COLO Pre 00/12] Prerequisite patches for COLO
@ 2015-06-02  9:26 Yang Hongyang
  2015-06-02  9:26 ` [PATCH v1 COLO Pre 01/12] tools/libxc: support to resume uncooperative HVM guests Yang Hongyang
                   ` (11 more replies)
  0 siblings, 12 replies; 21+ messages in thread
From: Yang Hongyang @ 2015-06-02  9:26 UTC (permalink / raw)
  To: xen-devel
  Cc: wei.liu2, ian.campbell, wency, andrew.cooper3, yunhong.jiang,
	eddie.dong, guijianfeng, rshriram, ian.jackson

This patchset is Prerequisite for COLO feature. For what COLO is, refer
to http://wiki.xen.org/wiki/COLO_-_Coarse_Grain_Lock_Stepping

This patchset is based on:
[PATCH v1 0/5] Misc cleanups for libxl 
http://lists.xenproject.org/archives/html/xen-devel/2015-05/msg02591.html

and is taken from previous sent RFC v5 COLO patches.

You can also get the patchset from:
    https://github.com/macrosheep/xen/tree/pre-colo-v1

Wen Congyang (4):
  tools/libxc: support to resume uncooperative HVM guests
  tools/libxl: Introduce a new internal API libxl__domain_unpause()
  tools/libxl: Update libxl_save_msgs_gen.pl to support return data from
    xl to xc
  tools/libxl: Add back channel to allow migration target send data back

Yang Hongyang (8):
  libxc/restore: zero ioreq page only one time
  tools/libxc: export xc_bitops.h
  tools/libxl: introduce a new API libxl__domain_restore() to load qemu
    state
  tools/libxl: Update libxl__domain_unpause() to support qemu-xen
  tools/libxl: introduce libxl__domain_common_switch_qemu_logdirty()
  tools/libxl: rename remus device to checkpoint device
  tools/libxl: adjust the indentation
  tools/libxl: don't touch remus in checkpoint_device

 tools/libxc/include/xc_bitops.h       |  76 ++++++++
 tools/libxc/xc_bitops.h               |  76 --------
 tools/libxc/xc_resume.c               |  22 ++-
 tools/libxc/xc_sr_restore_x86_hvm.c   |   3 +-
 tools/libxl/Makefile                  |   5 +-
 tools/libxl/libxl.c                   |  62 +++++--
 tools/libxl/libxl_checkpoint_device.c | 282 +++++++++++++++++++++++++++++
 tools/libxl/libxl_create.c            |  14 +-
 tools/libxl/libxl_dom_restore.c       |  76 ++++++++
 tools/libxl/libxl_dom_save.c          |  81 +++++----
 tools/libxl/libxl_internal.h          | 171 ++++++++++--------
 tools/libxl/libxl_netbuffer.c         | 117 ++++++------
 tools/libxl/libxl_nonetbuffer.c       |  10 +-
 tools/libxl/libxl_qmp.c               |  10 ++
 tools/libxl/libxl_remus.c             | 145 ++++++++++-----
 tools/libxl/libxl_remus_device.c      | 327 ----------------------------------
 tools/libxl/libxl_remus_disk_drbd.c   |  56 +++---
 tools/libxl/libxl_save_callout.c      |  31 ++++
 tools/libxl/libxl_save_helper.c       |  17 ++
 tools/libxl/libxl_save_msgs_gen.pl    |  65 ++++++-
 tools/libxl/libxl_types.idl           |  11 +-
 tools/libxl/xl_cmdimpl.c              |   7 +
 22 files changed, 991 insertions(+), 673 deletions(-)
 create mode 100644 tools/libxc/include/xc_bitops.h
 delete mode 100644 tools/libxc/xc_bitops.h
 create mode 100644 tools/libxl/libxl_checkpoint_device.c
 create mode 100644 tools/libxl/libxl_dom_restore.c
 delete mode 100644 tools/libxl/libxl_remus_device.c

-- 
1.9.1

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

end of thread, other threads:[~2015-06-04  8:51 UTC | newest]

Thread overview: 21+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-06-02  9:26 [PATCH v1 COLO Pre 00/12] Prerequisite patches for COLO Yang Hongyang
2015-06-02  9:26 ` [PATCH v1 COLO Pre 01/12] tools/libxc: support to resume uncooperative HVM guests Yang Hongyang
2015-06-02  9:26 ` [PATCH v1 COLO Pre 02/12] libxc/restore: zero ioreq page only one time Yang Hongyang
2015-06-02 10:16   ` Andrew Cooper
2015-06-02 10:25     ` Wen Congyang
2015-06-02  9:26 ` [PATCH v1 COLO Pre 03/12] tools/libxc: export xc_bitops.h Yang Hongyang
2015-06-02 10:11   ` Andrew Cooper
2015-06-04  1:01     ` Yang Hongyang
2015-06-04  8:36       ` Ian Campbell
2015-06-04  8:51         ` Yang Hongyang
2015-06-02  9:26 ` [PATCH v1 COLO Pre 04/12] tools/libxl: introduce a new API libxl__domain_restore() to load qemu state Yang Hongyang
2015-06-02  9:38   ` Wen Congyang
2015-06-02  9:49     ` Yang Hongyang
2015-06-02  9:26 ` [PATCH v1 COLO Pre 05/12] tools/libxl: Introduce a new internal API libxl__domain_unpause() Yang Hongyang
2015-06-02  9:26 ` [PATCH v1 COLO Pre 06/12] tools/libxl: Update libxl__domain_unpause() to support qemu-xen Yang Hongyang
2015-06-02  9:26 ` [PATCH v1 COLO Pre 07/12] tools/libxl: introduce libxl__domain_common_switch_qemu_logdirty() Yang Hongyang
2015-06-02  9:26 ` [PATCH v1 COLO Pre 08/12] tools/libxl: Update libxl_save_msgs_gen.pl to support return data from xl to xc Yang Hongyang
2015-06-02  9:26 ` [PATCH v1 COLO Pre 09/12] tools/libxl: Add back channel to allow migration target send data back Yang Hongyang
2015-06-02  9:26 ` [PATCH v1 COLO Pre 10/12] tools/libxl: rename remus device to checkpoint device Yang Hongyang
2015-06-02  9:26 ` [PATCH v1 COLO Pre 11/12] tools/libxl: adjust the indentation Yang Hongyang
2015-06-02  9:26 ` [PATCH v1 COLO Pre 12/12] tools/libxl: don't touch remus in checkpoint_device Yang Hongyang

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).