Skip to content

Commit

Permalink
nfs: Use PTR_ERR_OR_ZERO in 'nfs/nfs4super.c'
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Geyslan G. Bem authored and Trond Myklebust committed Oct 28, 2013
1 parent 54bcfa6 commit 6706246
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions fs/nfs/nfs4super.c
Original file line number Diff line number Diff line change
Expand Up @@ -261,9 +261,9 @@ struct dentry *nfs4_try_mount(int flags, const char *dev_name,

res = nfs_follow_remote_path(root_mnt, export_path);

dfprintk(MOUNT, "<-- nfs4_try_mount() = %ld%s\n",
IS_ERR(res) ? PTR_ERR(res) : 0,
IS_ERR(res) ? " [error]" : "");
dfprintk(MOUNT, "<-- nfs4_try_mount() = %d%s\n",
PTR_ERR_OR_ZERO(res),
IS_ERR(res) ? " [error]" : "");
return res;
}

Expand Down Expand Up @@ -319,9 +319,9 @@ static struct dentry *nfs4_referral_mount(struct file_system_type *fs_type,
data->mnt_path = export_path;

res = nfs_follow_remote_path(root_mnt, export_path);
dprintk("<-- nfs4_referral_mount() = %ld%s\n",
IS_ERR(res) ? PTR_ERR(res) : 0,
IS_ERR(res) ? " [error]" : "");
dprintk("<-- nfs4_referral_mount() = %d%s\n",
PTR_ERR_OR_ZERO(res),
IS_ERR(res) ? " [error]" : "");
return res;
}

Expand Down

0 comments on commit 6706246

Please sign in to comment.