From 5cce620bc1eac9a3f0bbf58084b7df2acde6bb15 Mon Sep 17 00:00:00 2001 From: Ralph Boehme Date: Thu, 4 Jan 2018 17:25:07 +0100 Subject: [PATCH] vfs_fileid: add a DEBUG message to log dev and inode Signed-off-by: Ralph Boehme Reviewed-by: Jeremy Allison --- source3/modules/vfs_fileid.c | 3 +++ 1 file changed, 3 insertions(+) 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; } -- 2.47.3