aboutsummaryrefslogtreecommitdiffstats
path: root/fs/nfs/dir.c
diff options
context:
space:
mode:
authorNamhyung Kim <namhyung@gmail.com>2010-12-28 17:02:46 +0000
committerTrond Myklebust <Trond.Myklebust@netapp.com>2011-01-04 13:10:39 -0500
commitbf0c84f1614bffc59565d04f09b9ac6b1aa269a9 (patch)
treecf310f5baaa323fe902320047f32e0d0c4a8f2a9 /fs/nfs/dir.c
parentnfs: fix mispelling of idmap CONFIG symbol (diff)
downloadlinux-dev-bf0c84f1614bffc59565d04f09b9ac6b1aa269a9.tar.xz
linux-dev-bf0c84f1614bffc59565d04f09b9ac6b1aa269a9.zip
NFS: use ERR_CAST()
Use ERR_CAST() intead of wierd-looking cast. Signed-off-by: Namhyung Kim <namhyung@gmail.com> Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
Diffstat (limited to 'fs/nfs/dir.c')
-rw-r--r--fs/nfs/dir.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/nfs/dir.c b/fs/nfs/dir.c
index 3e2123fe79f5..831d61c4449b 100644
--- a/fs/nfs/dir.c
+++ b/fs/nfs/dir.c
@@ -1218,7 +1218,7 @@ static struct dentry *nfs_lookup(struct inode *dir, struct dentry * dentry, stru
goto out_unblock_sillyrename;
}
inode = nfs_fhget(dentry->d_sb, fhandle, fattr);
- res = (struct dentry *)inode;
+ res = ERR_CAST(inode);
if (IS_ERR(res))
goto out_unblock_sillyrename;