summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--xlators/performance/stat-prefetch/src/stat-prefetch.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/xlators/performance/stat-prefetch/src/stat-prefetch.c b/xlators/performance/stat-prefetch/src/stat-prefetch.c
index 3d82174fef9..03ee2d3ac37 100644
--- a/xlators/performance/stat-prefetch/src/stat-prefetch.c
+++ b/xlators/performance/stat-prefetch/src/stat-prefetch.c
@@ -1094,6 +1094,15 @@ sp_lookup (call_frame_t *frame, xlator_t *this, loc_t *loc, dict_t *xattr_req)
if (cache) {
ret = sp_cache_get_entry (cache, (char *)loc->name, &dirent);
if (ret == 0) {
+ if (!uuid_is_null (loc->inode->gfid)
+ && (uuid_compare (loc->inode->gfid,
+ dirent->d_stat.ia_gfid))
+ != 0) {
+ op_ret = -1;
+ op_errno = ESTALE;
+ goto unwind;
+ }
+
ret = inode_ctx_get (loc->parent, this, &value);
if ((ret == 0) && (value != 0)) {
parent_inode_ctx = (void *)(long)value;