Re: [Xen-devel] [PATCH v15 13/14] x86/hvm: Remove redundant save functions

2018-08-07 Thread Jan Beulich
>>> On 03.08.18 at 15:53, wrote: > @@ -155,7 +152,7 @@ int hvm_save_one(struct domain *d, unsigned int typecode, > unsigned int instance, > if ( !ctxt.data ) > return -ENOMEM; > > -if ( (rv = hvm_sr_handlers[typecode].save(d, &ctxt)) != 0 ) > +if ( (rv = hvm_sr_handlers[ty

[Xen-devel] [PATCH v15 13/14] x86/hvm: Remove redundant save functions

2018-08-03 Thread Alexandru Isaila
This patch removes the redundant save functions and renames the save_one* to save. It then changes the domain param to vcpu in the save funcs. Signed-off-by: Alexandru Isaila --- Changes since V14: - Change vcpu to v - Remove extra space - Rename save_one handler to save