Sfoglia il codice sorgente

orangefs: no need to check for service_operation returns > 0

service_operation returns > 0 is undefined.

Signed-off-by: Mike Marshall <hubcap@omnibond.com>
Mike Marshall 6 anni fa
parent
commit
22fc9db296
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1 1
      fs/orangefs/namei.c

+ 1 - 1
fs/orangefs/namei.c

@@ -157,7 +157,7 @@ static struct dentry *orangefs_lookup(struct inode *dir, struct dentry *dentry,
 		     new_op->downcall.resp.lookup.refn.fs_id,
 		     ret);
 
-	if (ret >= 0) {
+	if (ret == 0) {
 		orangefs_set_timeout(dentry);
 		inode = orangefs_iget(dir->i_sb, &new_op->downcall.resp.lookup.refn);
 	} else if (ret == -ENOENT) {