diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2019-12-10 07:30:56 -0500 |
---|---|---|
committer | Anna Schumaker <Anna.Schumaker@Netapp.com> | 2020-01-15 10:15:16 -0500 |
commit | 6a3f7a399ebf52164e40773f4fbcb31a4c1ec02a (patch) | |
tree | 1a257af28b878247dab1d4f536082728a811e066 /fs/nfs/nfs4super.c | |
parent | 250d69f6a465e36a6ab8602030267de2586e028f (diff) | |
download | lwn-6a3f7a399ebf52164e40773f4fbcb31a4c1ec02a.tar.gz lwn-6a3f7a399ebf52164e40773f4fbcb31a4c1ec02a.zip |
nfs: stash nfs_subversion reference into nfs_mount_info
That will allow to get rid of passing those references around in
quite a few places. Moreover, that will allow to merge xdev and
remote file_system_type.
Reviewed-by: David Howells <dhowells@redhat.com>
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Anna Schumaker <Anna.Schumaker@Netapp.com>
Diffstat (limited to 'fs/nfs/nfs4super.c')
-rw-r--r-- | fs/nfs/nfs4super.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/nfs/nfs4super.c b/fs/nfs/nfs4super.c index c489942b9069..6e5417027021 100644 --- a/fs/nfs/nfs4super.c +++ b/fs/nfs/nfs4super.c @@ -248,6 +248,7 @@ static struct dentry *nfs4_referral_mount(struct file_system_type *fs_type, .fill_super = nfs_fill_super, .set_security = nfs_clone_sb_security, .cloned = data, + .nfs_mod = &nfs_v4, }; struct dentry *res; |