From: Ralph Boehme Date: Thu, 4 Jan 2018 16:25:07 +0000 (+0100) Subject: vfs_fileid: add a DEBUG message to log dev and inode X-Git-Tag: talloc-2.1.11~59 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=5cce620bc1eac9a3f0bbf58084b7df2acde6bb15;p=thirdparty%2Fsamba.git vfs_fileid: add a DEBUG message to log dev and inode Signed-off-by: Ralph Boehme Reviewed-by: Jeremy Allison --- diff --git a/source3/modules/vfs_fileid.c b/source3/modules/vfs_fileid.c index a7c4a49d553..9a8f3f99193 100644 --- a/source3/modules/vfs_fileid.c +++ b/source3/modules/vfs_fileid.c @@ -249,6 +249,9 @@ static struct file_id fileid_file_id_create(struct vfs_handle_struct *handle, id.devid = data->device_mapping_fn(data, sbuf->st_ex_dev); id.inode = sbuf->st_ex_ino; + DBG_DEBUG("Returning dev [%jx] inode [%jx]\n", + (uintmax_t)id.devid, (uintmax_t)id.inode); + return id; }