d84cf8
From f027734165374979bd0bff8ea059dfaadca85e07 Mon Sep 17 00:00:00 2001
d84cf8
From: Soumya Koduri <skoduri@redhat.com>
d84cf8
Date: Thu, 2 Jul 2020 02:07:56 +0530
d84cf8
Subject: [PATCH 462/465] Issue with gf_fill_iatt_for_dirent
d84cf8
d84cf8
In "gf_fill_iatt_for_dirent()", while calculating inode_path for loc,
d84cf8
the inode should be of parent's. Instead it is loc.inode which results in error
d84cf8
 and eventually lookup/readdirp fails.
d84cf8
d84cf8
This patch fixes the same.
d84cf8
d84cf8
This is backport of below mainstream fix :
d84cf8
d84cf8
> Change-Id: Ied086234a4634e8cb13520521ac547c87b3c76b5
d84cf8
> Fixes: #1351
d84cf8
> Upstream patch: https://review.gluster.org/#/c/glusterfs/+/24661/
d84cf8
d84cf8
Change-Id: Ied086234a4634e8cb13520521ac547c87b3c76b5
d84cf8
BUG: 1853189
d84cf8
Signed-off-by: Soumya Koduri <skoduri@redhat.com>
d84cf8
Reviewed-on: https://code.engineering.redhat.com/gerrit/208691
d84cf8
Tested-by: RHGS Build Bot <nigelb@redhat.com>
d84cf8
Reviewed-by: Sunil Kumar Heggodu Gopala Acharya <sheggodu@redhat.com>
d84cf8
---
d84cf8
 libglusterfs/src/gf-dirent.c | 2 +-
d84cf8
 1 file changed, 1 insertion(+), 1 deletion(-)
d84cf8
d84cf8
diff --git a/libglusterfs/src/gf-dirent.c b/libglusterfs/src/gf-dirent.c
d84cf8
index f289723..3fa67f2 100644
d84cf8
--- a/libglusterfs/src/gf-dirent.c
d84cf8
+++ b/libglusterfs/src/gf-dirent.c
d84cf8
@@ -277,7 +277,7 @@ gf_fill_iatt_for_dirent(gf_dirent_t *entry, inode_t *parent, xlator_t *subvol)
d84cf8
     gf_uuid_copy(loc.pargfid, parent->gfid);
d84cf8
     loc.name = entry->d_name;
d84cf8
     loc.parent = inode_ref(parent);
d84cf8
-    ret = inode_path(loc.inode, entry->d_name, &path);
d84cf8
+    ret = inode_path(loc.parent, entry->d_name, &path);
d84cf8
     loc.path = path;
d84cf8
     if (ret < 0)
d84cf8
         goto out;
d84cf8
-- 
d84cf8
1.8.3.1
d84cf8