summaryrefslogtreecommitdiffstats
path: root/libglusterfs
diff options
context:
space:
mode:
authorMohammed Rafi KC <rkavunga@redhat.com>2016-04-26 16:59:30 +0530
committerNiels de Vos <ndevos@redhat.com>2016-04-28 12:53:41 -0700
commit9423bdeed169076ebedd9af40b52aaac58c9839e (patch)
tree399c67f1424fa9406c77d73d027befdd0d4c2732 /libglusterfs
parentfbb655d90aae42398c51469919dde20138e89d7d (diff)
gfapi: fill iatt in readdirp_cbk if entry->inode is null
If any of dirent have inode as null in readdirp_cbk, which indicates that the stat information is not valid. So for such entries, we send explicit lookup to fill the stat information. Change-Id: I0604bce34583db0bb04b5aae8933766201c6ddad BUG: 1330567 Signed-off-by: Mohammed Rafi KC <rkavunga@redhat.com> Reviewed-on: http://review.gluster.org/14079 NetBSD-regression: NetBSD Build System <jenkins@build.gluster.org> Smoke: Gluster Build System <jenkins@build.gluster.com> CentOS-regression: Gluster Build System <jenkins@build.gluster.com> Reviewed-by: Niels de Vos <ndevos@redhat.com>
Diffstat (limited to 'libglusterfs')
-rw-r--r--libglusterfs/src/gf-dirent.c42
-rw-r--r--libglusterfs/src/gf-dirent.h3
2 files changed, 45 insertions, 0 deletions
diff --git a/libglusterfs/src/gf-dirent.c b/libglusterfs/src/gf-dirent.c
index 3cbef6605db..d0df80e2886 100644
--- a/libglusterfs/src/gf-dirent.c
+++ b/libglusterfs/src/gf-dirent.c
@@ -15,6 +15,7 @@
#include <stdint.h>
#include "compat.h"
#include "xlator.h"
+#include "syncop.h"
#define ONE 1ULL
#define PRESENT_D_OFF_BITS 63
@@ -257,3 +258,44 @@ gf_link_inodes_from_dirent (xlator_t *this, inode_t *parent,
return 0;
}
+
+int
+gf_fill_iatt_for_dirent (gf_dirent_t *entry, inode_t *parent, xlator_t *subvol)
+{
+ loc_t loc = {0, };
+ int ret = -1;
+ char *path = NULL;
+ struct iatt iatt = {0,};
+
+ loc.inode = inode_grep (parent->table, parent, entry->d_name);
+ if (!loc.inode) {
+ loc.inode = inode_new (parent->table);
+ gf_uuid_copy (loc.inode->gfid, entry->d_stat.ia_gfid);
+ }
+
+ gf_uuid_copy (loc.pargfid, parent->gfid);
+ loc.name = entry->d_name;
+ loc.parent = inode_ref (parent);
+ ret = inode_path (loc.inode, entry->d_name, &path);
+ loc.path = path;
+ if (ret < 0)
+ goto out;
+
+ ret = syncop_lookup (subvol, &loc, &iatt, NULL, NULL, NULL);
+ if (ret)
+ goto out;
+
+ entry->d_stat = iatt;
+ entry->inode = inode_ref (loc.inode);
+ /* We don't need to link inode here, because as part of readdirp_cbk
+ * we will link all dirents.
+ *
+ * Since we did a proper lookup, we don't need to set need_lookup
+ * flag.
+ */
+
+ ret = 0;
+out:
+ loc_wipe (&loc);
+ return ret;
+}
diff --git a/libglusterfs/src/gf-dirent.h b/libglusterfs/src/gf-dirent.h
index 098a66ace15..caa09c1728e 100644
--- a/libglusterfs/src/gf-dirent.h
+++ b/libglusterfs/src/gf-dirent.h
@@ -61,6 +61,9 @@ void gf_dirent_entry_free (gf_dirent_t *entry);
void gf_dirent_free (gf_dirent_t *entries);
int gf_link_inodes_from_dirent (xlator_t *this, inode_t *parent,
gf_dirent_t *entries);
+int
+gf_fill_iatt_for_dirent (gf_dirent_t *entry, inode_t *parent,
+ xlator_t *subvol);
void
gf_link_inode_from_dirent (xlator_t *this, inode_t *parent, gf_dirent_t *entry);