diff options
author | Mike Marshall <hubcap@omnibond.com> | 2018-10-18 21:05:46 +0300 |
---|---|---|
committer | Mike Marshall <hubcap@omnibond.com> | 2018-10-18 21:05:46 +0300 |
commit | 22fc9db296fcf7ac30151c52765a7fba10870ab7 (patch) | |
tree | 28229a151e6177a996424a9cf6b66c051ea47bfb /fs | |
parent | 34e6148a2c75abdde44071d1605d009d0ad92e5e (diff) | |
download | linux-22fc9db296fcf7ac30151c52765a7fba10870ab7.tar.xz |
orangefs: no need to check for service_operation returns > 0
service_operation returns > 0 is undefined.
Signed-off-by: Mike Marshall <hubcap@omnibond.com>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/orangefs/namei.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/orangefs/namei.c b/fs/orangefs/namei.c index f5cd7075e78e..c8676c996249 100644 --- a/fs/orangefs/namei.c +++ b/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) { |