mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 12:28:41 +08:00
orangefs: no need to check for service_operation returns > 0
service_operation returns > 0 is undefined. Signed-off-by: Mike Marshall <hubcap@omnibond.com>
This commit is contained in:
parent
34e6148a2c
commit
22fc9db296
@ -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) {
|
||||
|
Loading…
Reference in New Issue
Block a user