From 3d38e4e47f129bdb36c3fbbd481dabe4ba4413d6 Mon Sep 17 00:00:00 2001 From: Kotresh HR Date: Fri, 25 May 2018 08:55:11 -0400 Subject: libgfapi: Fix lookup on root Lookup on root was sending "/" as the path. This will break the basename calculation in loc_copy and hence lookup on root was failing if the loc_copy was involved in the stack. With ctime, a first lookup on root initiates a metadata self heal because of ctime xattr not being same on all afr subvolumes. This results in loc_copy and hence the failure of lookup. Fix would be to send path with "." for the root. fixes: bz#1582516 Change-Id: Iafe4b99f249a4f5034ad34c1d30590de0e35aa0d Signed-off-by: Kotresh HR --- api/src/glfs-resolve.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'api') diff --git a/api/src/glfs-resolve.c b/api/src/glfs-resolve.c index 03be7c7eda7..d305c126cb6 100644 --- a/api/src/glfs-resolve.c +++ b/api/src/glfs-resolve.c @@ -241,9 +241,9 @@ glfs_resolve_root (struct glfs *fs, xlator_t *subvol, inode_t *inode, loc.inode = inode_ref (inode); - ret = inode_path (loc.inode, NULL, &path); + ret = inode_path (loc.inode, ".", &path); loc.path = path; - loc.name = ""; + loc.name = "."; /* Having a value in loc.name will help to bypass md-cache check for * nameless lookup. * TODO: Re-visit on nameless lookup and md-cache. -- cgit