diff options
| author | Raghavendra Bhat <raghavendrabhat@gluster.com> | 2011-04-03 12:01:41 +0000 | 
|---|---|---|
| committer | Vijay Bellur <vijay@gluster.com> | 2011-04-07 11:39:56 -0700 | 
| commit | ee494c7519e5da09b66003de514db5e700c3001d (patch) | |
| tree | d6d6b611a85e7de46ccb183d5b4073644efa095b /libglusterfs | |
| parent | af4604ad4cf58f4b9b3fab26121c3ebd105428ca (diff) | |
print the gfid of the inode for which dentry is not found
Signed-off-by: Raghavendra Bhat <raghavendrabhat@gluster.com>
Signed-off-by: Vijay Bellur <vijay@gluster.com>
BUG: 2652 ([glusterfs-3.2.0qa6]: dbench keeps on running)
URL: http://bugs.gluster.com/cgi-bin/bugzilla3/show_bug.cgi?id=2652
Diffstat (limited to 'libglusterfs')
| -rw-r--r-- | libglusterfs/src/inode.c | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/libglusterfs/src/inode.c b/libglusterfs/src/inode.c index a8354464346..d81fa6183d7 100644 --- a/libglusterfs/src/inode.c +++ b/libglusterfs/src/inode.c @@ -1031,8 +1031,8 @@ inode_path (inode_t *inode, const char *name, char **bufp)                  if ((inode->ino != 1) &&                      (i == 0)) {                          gf_log (table->name, GF_LOG_WARNING, -                                "no dentry for non-root inode %"PRId64, -                                inode->ino); +                                "no dentry for non-root inode %"PRId64": %s", +                                inode->ino, uuid_utoa (inode->gfid));                          ret = -ENOENT;                          goto unlock;                  }  | 
