[libvirt] [PATCH] storage: Create enough volumes for mpath pool

2011-02-14 Thread Osier Yang
virStorageBackendCreateVols: names-next serves as condition expression for do...while, however, names was shifted before, it then results in one less loop, and thus, one less volume will be created for mpath pool, the patch is to fix it. * src/storage/storage_backend_mpath.c ---

Re: [libvirt] [PATCH] storage: Create enough volumes for mpath pool

2011-02-14 Thread Eric Blake
On 02/14/2011 06:48 AM, Osier Yang wrote: virStorageBackendCreateVols: names-next serves as condition expression for do...while, however, names was shifted before, it then results in one less loop, and thus, one less volume will be created for mpath pool, the patch is to fix it. @@

Re: [libvirt] [PATCH] storage: Create enough volumes for mpath pool

2011-02-14 Thread Osier Yang
于 2011年02月15日 00:40, Eric Blake 写道: On 02/14/2011 06:48 AM, Osier Yang wrote: virStorageBackendCreateVols: names-next serves as condition expression for do...while, however, names was shifted before, it then results in one less loop, and thus, one less volume will be created for mpath pool,