mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-07-06 14:31:46 +00:00
nfs: Use PTR_ERR_OR_ZERO in 'nfs/nfs4super.c'
Use 'PTR_ERR_OR_ZERO()' rather than 'IS_ERR(...) ? PTR_ERR(...) : 0'. Signed-off-by: Geyslan G. Bem <geyslan@gmail.com> Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
This commit is contained in:
parent
54bcfa6682
commit
6706246b22
1 changed files with 6 additions and 6 deletions
|
@ -261,8 +261,8 @@ struct dentry *nfs4_try_mount(int flags, const char *dev_name,
|
||||||
|
|
||||||
res = nfs_follow_remote_path(root_mnt, export_path);
|
res = nfs_follow_remote_path(root_mnt, export_path);
|
||||||
|
|
||||||
dfprintk(MOUNT, "<-- nfs4_try_mount() = %ld%s\n",
|
dfprintk(MOUNT, "<-- nfs4_try_mount() = %d%s\n",
|
||||||
IS_ERR(res) ? PTR_ERR(res) : 0,
|
PTR_ERR_OR_ZERO(res),
|
||||||
IS_ERR(res) ? " [error]" : "");
|
IS_ERR(res) ? " [error]" : "");
|
||||||
return res;
|
return res;
|
||||||
}
|
}
|
||||||
|
@ -319,8 +319,8 @@ static struct dentry *nfs4_referral_mount(struct file_system_type *fs_type,
|
||||||
data->mnt_path = export_path;
|
data->mnt_path = export_path;
|
||||||
|
|
||||||
res = nfs_follow_remote_path(root_mnt, export_path);
|
res = nfs_follow_remote_path(root_mnt, export_path);
|
||||||
dprintk("<-- nfs4_referral_mount() = %ld%s\n",
|
dprintk("<-- nfs4_referral_mount() = %d%s\n",
|
||||||
IS_ERR(res) ? PTR_ERR(res) : 0,
|
PTR_ERR_OR_ZERO(res),
|
||||||
IS_ERR(res) ? " [error]" : "");
|
IS_ERR(res) ? " [error]" : "");
|
||||||
return res;
|
return res;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue