On Thu, May 19, 2011 at 04:51:26PM -0400, Laine Stump wrote: > From: Michal Privoznik <mpriv...@redhat.com> > > --- > src/remote/remote_driver.c | 3 +++ > src/remote/remote_protocol.x | 17 ++++++++++++++++- > src/remote_protocol-structs | 9 +++++++++ > 3 files changed, 28 insertions(+), 1 deletions(-) > > diff --git a/src/remote/remote_driver.c b/src/remote/remote_driver.c > index 8c69743..5d837d1 100644 > --- a/src/remote/remote_driver.c > +++ b/src/remote/remote_driver.c > @@ -6909,6 +6909,9 @@ static virInterfaceDriver interface_driver = { > .interfaceCreate = remoteInterfaceCreate, /* 0.7.2 */ > .interfaceDestroy = remoteInterfaceDestroy, /* 0.7.2 */ > .interfaceIsActive = remoteInterfaceIsActive, /* 0.7.3 */ > + .interfaceChangeBegin = remoteInterfaceChangeBegin, /* 0.9.2 */ > + .interfaceChangeCommit = remoteInterfaceChangeCommit, /* 0.9.2 */ > + .interfaceChangeRollback = remoteInterfaceChangeRollback, /* 0.9.2 */ > }; > > static virStorageDriver storage_driver = { > diff --git a/src/remote/remote_protocol.x b/src/remote/remote_protocol.x > index c784dba..12fd395 100644 > --- a/src/remote/remote_protocol.x > +++ b/src/remote/remote_protocol.x > @@ -1164,6 +1164,18 @@ struct remote_interface_destroy_args { > unsigned int flags; > }; > > +struct remote_interface_change_begin_args { > + unsigned int flags; > +}; > + > +struct remote_interface_change_commit_args { > + unsigned int flags; > +}; > + > +struct remote_interface_change_rollback_args { > + unsigned int flags; > +}; > + > > /* Auth calls: */ > > @@ -2291,8 +2303,11 @@ enum remote_procedure { > REMOTE_PROC_DOMAIN_MIGRATE_PERFORM3 = 216, /* skipgen skipgen */ > REMOTE_PROC_DOMAIN_MIGRATE_FINISH3 = 217, /* skipgen skipgen */ > REMOTE_PROC_DOMAIN_MIGRATE_CONFIRM3 = 218, /* skipgen skipgen */ > - REMOTE_PROC_DOMAIN_SET_SCHEDULER_PARAMETERS_FLAGS = 219 /* skipgen > skipgen */ > + REMOTE_PROC_DOMAIN_SET_SCHEDULER_PARAMETERS_FLAGS = 219, /* skipgen > skipgen */ > + REMOTE_PROC_INTERFACE_CHANGE_BEGIN = 220, /* autogen autogen */ > > + REMOTE_PROC_INTERFACE_CHANGE_COMMIT = 221, /* autogen autogen */ > + REMOTE_PROC_INTERFACE_CHANGE_ROLLBACK = 222 /* autogen autogen */ > /* > * Notice how the entries are grouped in sets of 10 ? > * Nice isn't it. Please keep it this way when adding more. > diff --git a/src/remote_protocol-structs b/src/remote_protocol-structs > index 414b4d5..a28cd13 100644 > --- a/src/remote_protocol-structs > +++ b/src/remote_protocol-structs > @@ -803,6 +803,15 @@ struct remote_interface_destroy_args { > remote_nonnull_interface iface; > u_int flags; > }; > +struct remote_interface_change_begin_args { > + unsigned int flags; > +}; > +struct remote_interface_change_commit_args { > + unsigned int flags; > +}; > +struct remote_interface_change_rollback_args { > + unsigned int flags; > +}; > struct remote_auth_list_ret { > struct { > u_int types_len;
Looks fine, the cleanup on remote stub generation really make those remote support patches way nicer :-) ACK, Daniel -- Daniel Veillard | libxml Gnome XML XSLT toolkit http://xmlsoft.org/ dan...@veillard.com | Rpmfind RPM search engine http://rpmfind.net/ http://veillard.com/ | virtualization library http://libvirt.org/ -- libvir-list mailing list libvir-list@redhat.com https://www.redhat.com/mailman/listinfo/libvir-list