xen-devel.lists.xenproject.org archive mirror
 help / color / mirror / Atom feed
* [RFC v2 0/6] xen/arm: Support guest VM save/restore/migration
@ 2014-04-15 21:05 Wei Huang
  2014-04-15 21:05 ` [RFC v2 1/6] xen/arm: Save and restore support with hvm context hypercalls Wei Huang
                   ` (14 more replies)
  0 siblings, 15 replies; 47+ messages in thread
From: Wei Huang @ 2014-04-15 21:05 UTC (permalink / raw)
  To: xen-devel
  Cc: w1.huang, ian.campbell, stefano.stabellini, andrew.cooper3,
	julien.grall, jaeyong.yoo, yjhyun.yoo

This series is RFC v2 for save/restore/migration. The following 
areas have been addressed:
  * save and restore of guest states is split into specific areas (and files)
  * get XENMEM_maximum_gpfn is now supported via P2M max_mapped_gfn.
  * name and layout of some functions
  * small areas commented by Julien Grall and Andrew Cooper

Note that:
  * previous comments by Ian are being examined.
  * patch 3-6 need more review attenion.
  * Rev v3 will be sent out soon.

Let me know if there are issues with the design. 

Thanks,
-Wei

  xen/arm: Save and restore support with hvm context hypercalls
  xen/arm: implement support for XENMEM_maximum_gpfn hypercall
  xen/arm: support guest do_suspend function
  xen/arm: Implement VLPT for guest p2m mapping in live migration
  xen/arm: Implement hypercall for dirty page tracing
  xen/arm: Implement toolstack for xl restore/save and migrate

 config/arm32.mk                        |    1 +
 config/arm64.mk                        |    1 +
 tools/libxc/Makefile                   |    6 +-
 tools/libxc/xc_arm_migrate.c           |  702 ++++++++++++++++++++++++++++++++
 tools/libxc/xc_dom_arm.c               |    4 +-
 tools/libxc/xc_resume.c                |   25 ++
 tools/libxl/libxl.h                    |    3 -
 tools/misc/Makefile                    |    4 +-
 xen/arch/arm/Makefile                  |    1 +
 xen/arch/arm/domain.c                  |   19 +
 xen/arch/arm/domctl.c                  |   21 +
 xen/arch/arm/hvm.c                     |  268 +++++++++++-
 xen/arch/arm/mm.c                      |  242 ++++++++++-
 xen/arch/arm/p2m.c                     |  211 ++++++++++
 xen/arch/arm/save.c                    |   65 +++
 xen/arch/arm/traps.c                   |   11 +
 xen/arch/arm/vgic.c                    |  146 +++++++
 xen/arch/arm/vtimer.c                  |   71 ++++
 xen/arch/x86/domctl.c                  |   70 ----
 xen/common/Makefile                    |    2 +-
 xen/common/domctl.c                    |   74 ++++
 xen/include/asm-arm/config.h           |    7 +
 xen/include/asm-arm/domain.h           |   14 +
 xen/include/asm-arm/hvm/support.h      |   29 ++
 xen/include/asm-arm/mm.h               |   28 ++
 xen/include/asm-arm/p2m.h              |    8 +-
 xen/include/asm-arm/processor.h        |    2 +
 xen/include/public/arch-arm/hvm/save.h |  130 ++++++
 28 files changed, 2083 insertions(+), 82 deletions(-)
 create mode 100644 tools/libxc/xc_arm_migrate.c
 create mode 100644 xen/arch/arm/save.c
 create mode 100644 xen/include/asm-arm/hvm/support.h

-- 
1.7.9.5

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

end of thread, other threads:[~2014-05-13 17:33 UTC | newest]

Thread overview: 47+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-04-15 21:05 [RFC v2 0/6] xen/arm: Support guest VM save/restore/migration Wei Huang
2014-04-15 21:05 ` [RFC v2 1/6] xen/arm: Save and restore support with hvm context hypercalls Wei Huang
2014-04-15 23:37   ` Andrew Cooper
2014-04-16 21:50     ` Wei Huang
2014-04-17 12:55       ` Andrew Cooper
2014-04-16  9:48   ` Julien Grall
2014-04-16 10:30     ` Jan Beulich
2014-04-16 15:54       ` Wei Huang
2014-04-17 15:06   ` Julien Grall
2014-04-17 16:55     ` Wei Huang
2014-05-12  9:16     ` Ian Campbell
2014-05-12 12:04       ` Julien Grall
     [not found]         ` <53723ACC.8040402@samsung.com>
2014-05-13 15:42           ` Julien Grall
2014-05-13 16:18             ` Wei Huang
2014-05-13 16:37               ` Julien Grall
2014-05-13 16:44                 ` Wei Huang
2014-05-13 17:33                   ` Julien Grall
2014-04-15 21:05 ` [RFC v2 2/6] xen/arm: implement support for XENMEM_maximum_gpfn hypercall Wei Huang
2014-04-15 22:46   ` Julien Grall
2014-04-16 15:33     ` Wei Huang
2014-04-15 21:05 ` [RFC v2 3/6] xen/arm: support guest do_suspend function Wei Huang
2014-04-15 23:38   ` Andrew Cooper
2014-04-15 23:39   ` Andrew Cooper
2014-04-16  9:10   ` Julien Grall
2014-04-15 21:05 ` [RFC v2 4/6] xen/arm: Implement VLPT for guest p2m mapping in live migration Wei Huang
2014-04-15 22:29   ` Julien Grall
2014-04-15 23:40   ` Andrew Cooper
2014-04-22 17:54   ` Julien Grall
2014-04-15 21:05 ` [RFC v2 5/6] xen/arm: Implement hypercall for dirty page tracing Wei Huang
2014-04-15 23:38   ` Andrew Cooper
2014-04-15 21:05 ` [RFC v2 6/6] xen/arm: Implement toolstack for xl restore/save and migrate Wei Huang
2014-04-15 23:40   ` Andrew Cooper
2014-04-15 21:05 ` [RFC v2 0/6] xen/arm: Support guest VM save/restore/migration Wei Huang
2014-04-15 22:23   ` Julien Grall
2014-04-15 21:05 ` [RFC v2 1/6] xen/arm: Save and restore support with hvm context hypercalls Wei Huang
2014-04-15 21:05 ` [RFC v2 2/6] xen/arm: implement support for XENMEM_maximum_gpfn hypercall Wei Huang
2014-04-15 21:05 ` [RFC v2 3/6] xen/arm: support guest do_suspend function Wei Huang
2014-04-15 21:05 ` [RFC v2 4/6] xen/arm: Implement VLPT for guest p2m mapping in live migration Wei Huang
2014-04-15 21:05 ` [RFC v2 5/6] xen/arm: Implement hypercall for dirty page tracing Wei Huang
2014-04-15 23:35   ` Julien Grall
2014-04-23 11:59   ` Julien Grall
2014-04-15 21:05 ` [RFC v2 6/6] xen/arm: Implement toolstack for xl restore/save and migrate Wei Huang
2014-04-16 16:29 ` [RFC v2 0/6] xen/arm: Support guest VM save/restore/migration Julien Grall
2014-04-16 16:41   ` Wei Huang
2014-04-16 16:50     ` Julien Grall
2014-04-23 11:49 ` Ian Campbell
2014-04-23 18:41   ` Wei Huang

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).