Re: [Xen-devel] [PATCH v6 04/18] libxl/save: Refactor libxl__domain_suspend_state

2016-01-26 Thread Konrad Rzeszutek Wilk
On Tue, Jan 26, 2016 at 10:23:52AM +0800, Wen Congyang wrote: > On 01/26/2016 01:29 AM, Konrad Rzeszutek Wilk wrote: > > .snip.. > >> --- a/tools/libxl/libxl_dom_suspend.c > >> +++ b/tools/libxl/libxl_dom_suspend.c > >> @@ -19,14 +19,71 @@ > >> > >> /*== Domain suspend ==

Re: [Xen-devel] [PATCH v6 04/18] libxl/save: Refactor libxl__domain_suspend_state

2016-01-25 Thread Wen Congyang
On 01/26/2016 01:29 AM, Konrad Rzeszutek Wilk wrote: > .snip.. >> --- a/tools/libxl/libxl_dom_suspend.c >> +++ b/tools/libxl/libxl_dom_suspend.c >> @@ -19,14 +19,71 @@ >> >> /*== Domain suspend ===*/ >> >> +int libxl__domain_suspend_init(libxl__egc *egc,

Re: [Xen-devel] [PATCH v6 04/18] libxl/save: Refactor libxl__domain_suspend_state

2016-01-25 Thread Konrad Rzeszutek Wilk
.snip.. > --- a/tools/libxl/libxl_dom_suspend.c > +++ b/tools/libxl/libxl_dom_suspend.c > @@ -19,14 +19,71 @@ > > /*== Domain suspend ===*/ > > +int libxl__domain_suspend_init(libxl__egc *egc, > + libxl__domain_suspend_state

[Xen-devel] [PATCH v6 04/18] libxl/save: Refactor libxl__domain_suspend_state

2015-12-29 Thread Wen Congyang
Currently struct libxl__domain_suspend_state contains 2 type of states, one is save state, another is suspend state. This patch separates those two out. The motivation of this is that COLO will need to do suspend/resume continuously, we need a more common suspend state. After this change, dss stan