On 12/04/2014 12:24 PM, Peter Krempa wrote:
> To ease debugging permission problems add uid/gid values to the debug
> message when initializing a storage file backend.
> ---
> src/storage/storage_backend_fs.c | 4 ++--
> src/storage/storage_backend_gluster.c | 4 ++--
> 2 files changed, 4 insertions(+), 4 deletions(-)
>
> diff --git a/src/storage/storage_backend_fs.c
> b/src/storage/storage_backend_fs.c
> index 0ee1d09..b831268 100644
> --- a/src/storage/storage_backend_fs.c
> +++ b/src/storage/storage_backend_fs.c
> @@ -1370,9 +1370,9 @@ virStorageFileBackendFileInit(virStorageSourcePtr src)
> {
> virStorageFileBackendFsPrivPtr priv = NULL;
>
> - VIR_DEBUG("initializing FS storage file %p (%s:%s)", src,
> + VIR_DEBUG("initializing FS storage file %p (%s:%s[%u:%u])", src,
> virStorageTypeToString(virStorageSourceGetActualType(src)),
> - src->path);
> + src->path, src->drv->uid, src->drv->gid);You'll need casts to keep gcc happy on all platforms. On at least 32-bit cygwin, uid_t is typed as 'long' instead of 'int'. Look at src/util/virutil.c for examples. ACK with the casts added. -- Eric Blake eblake redhat com +1-919-301-3266 Libvirt virtualization library http://libvirt.org
signature.asc
Description: OpenPGP digital signature
-- libvir-list mailing list [email protected] https://www.redhat.com/mailman/listinfo/libvir-list
