summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--api/src/glfs-handleops.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/api/src/glfs-handleops.c b/api/src/glfs-handleops.c
index a500aae3aee..f8193408ec0 100644
--- a/api/src/glfs-handleops.c
+++ b/api/src/glfs-handleops.c
@@ -1292,11 +1292,12 @@ pub_glfs_h_create_from_handle (struct glfs *fs, unsigned char *handle, int len,
newinode = inode_find (subvol->itable, loc.gfid);
if (newinode) {
+ if (!stat) /* No need of lookup */
+ goto found;
+
lookup_needed = inode_needs_lookup (newinode, THIS);
if (lookup_needed) {
loc.inode = newinode;
- } else if (!stat) {
- goto found;
} else {
/* populate loc */
GLFS_LOC_FILL_INODE (newinode, loc, fill_out);