[libvirt] [PATCH 08/11] qemuDomainNamespace{Setup, Teardown}Disk: Don't pass pointer to full disk

2017-02-08 Thread Michal Privoznik
These functions do not need to see the whole virDomainDiskDef. Moreover, they are going to be called from places where we don't have access to the full disk definition. Sticking with virStorageSource is more than enough. Signed-off-by: Michal Privoznik --- src/qemu/qemu_domain.c | 8 s

Re: [libvirt] [PATCH 08/11] qemuDomainNamespace{Setup, Teardown}Disk: Don't pass pointer to full disk

2017-02-08 Thread Peter Krempa
On Wed, Feb 08, 2017 at 11:37:11 +0100, Michal Privoznik wrote: > These functions do not need to see the whole virDomainDiskDef. > Moreover, they are going to be called from places where we don't > have access to the full disk definition. Sticking with > virStorageSource is more than enough. > > S