diff options
| author | Al Viro <viro@zeniv.linux.org.uk> | 2010-12-18 11:29:39 -0500 | 
|---|---|---|
| committer | Al Viro <viro@zeniv.linux.org.uk> | 2011-01-12 20:02:45 -0500 | 
| commit | 8b244ff2fa58f81f84aa03c82c2c23307a778ce7 (patch) | |
| tree | 39c913ed4e529084a856c9c80cab9d173d251863 /fs/nfs/getroot.c | |
| parent | 96e1391414f80a8a3bae74ddf58d3c2870e304f0 (diff) | |
| download | olio-linux-3.10-8b244ff2fa58f81f84aa03c82c2c23307a778ce7.tar.xz olio-linux-3.10-8b244ff2fa58f81f84aa03c82c2c23307a778ce7.zip  | |
switch nfs to ->s_d_op
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/nfs/getroot.c')
| -rw-r--r-- | fs/nfs/getroot.c | 6 | 
1 files changed, 0 insertions, 6 deletions
diff --git a/fs/nfs/getroot.c b/fs/nfs/getroot.c index 5596c6a2881..b5ffe8fa291 100644 --- a/fs/nfs/getroot.c +++ b/fs/nfs/getroot.c @@ -119,9 +119,6 @@ struct dentry *nfs_get_root(struct super_block *sb, struct nfs_fh *mntfh)  	}  	security_d_instantiate(ret, inode); - -	if (ret->d_op == NULL) -		d_set_d_op(ret, server->nfs_client->rpc_ops->dentry_ops);  out:  	nfs_free_fattr(fsinfo.fattr);  	return ret; @@ -227,9 +224,6 @@ struct dentry *nfs4_get_root(struct super_block *sb, struct nfs_fh *mntfh)  	security_d_instantiate(ret, inode); -	if (ret->d_op == NULL) -		d_set_d_op(ret, server->nfs_client->rpc_ops->dentry_ops); -  out:  	nfs_free_fattr(fattr);  	dprintk("<-- nfs4_get_root()\n");  |