summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--xlators/performance/md-cache/src/md-cache.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/xlators/performance/md-cache/src/md-cache.c b/xlators/performance/md-cache/src/md-cache.c
index ef156e309a1..e23bef02746 100644
--- a/xlators/performance/md-cache/src/md-cache.c
+++ b/xlators/performance/md-cache/src/md-cache.c
@@ -800,15 +800,15 @@ mdc_lookup (call_frame_t *frame, xlator_t *this, loc_t *loc,
if (!local)
goto uncached;
+ loc_copy (&local->loc, loc);
+
if (!loc->name)
- /* A nameless discovery is dangerous to cache. We
+ /* A nameless discovery is dangerous to serve from cache. We
perform nameless lookup with the intention of
re-establishing an inode "properly"
*/
goto uncached;
- loc_copy (&local->loc, loc);
-
ret = mdc_inode_iatt_get (this, loc->inode, &stbuf);
if (ret != 0)
goto uncached;