Re: [libvirt] [PATCH 03/10] list: Implement the RPC calls for virConnectListAllStoragePools

2012-09-04 Thread Eric Blake
On 09/04/2012 05:48 PM, Eric Blake wrote: > On 09/04/2012 09:16 AM, Osier Yang wrote: >> The RPC generator doesn't support returning list of object, this patch do > > s/patch do/patch does/ > >> the work manually. >> > >> @@ -5612,6 +5675,7 @@ static virStorageDriver storage_driver = { >> .

Re: [libvirt] [PATCH 03/10] list: Implement the RPC calls for virConnectListAllStoragePools

2012-09-04 Thread Eric Blake
On 09/04/2012 09:16 AM, Osier Yang wrote: > The RPC generator doesn't support returning list of object, this patch do s/patch do/patch does/ > the work manually. > > @@ -5612,6 +5675,7 @@ static virStorageDriver storage_driver = { > .listPools = remoteListStoragePools, /* 0.4.1 */ > .

[libvirt] [PATCH 03/10] list: Implement the RPC calls for virConnectListAllStoragePools

2012-09-04 Thread Osier Yang
The RPC generator doesn't support returning list of object, this patch do the work manually. * daemon/remote.c: Implement the server side handler remoteDispatchConnectListAllStoragePools * src/remote/remote_driver.c: Add remote driver handler remoteConnectListAllStoragePools. * src