From: Bryan Schumaker <bjschuma@xxxxxxxxxx> This can be shared by v2, v3 and v4 in their other common code. Signed-off-by: Bryan Schumaker <bjschuma@xxxxxxxxxx> --- fs/nfs/super.c | 26 ++++++-------------------- 1 file changed, 6 insertions(+), 20 deletions(-) diff --git a/fs/nfs/super.c b/fs/nfs/super.c index 37412f7..c9bc86e 100644 --- a/fs/nfs/super.c +++ b/fs/nfs/super.c @@ -2135,16 +2135,18 @@ static void nfs_fill_super(struct super_block *sb, sb->s_blocksize_bits = 0; sb->s_blocksize = 0; - if (data->bsize) + if (data && data->bsize) sb->s_blocksize = nfs_block_size(data->bsize, &sb->s_blocksize_bits); - if (server->nfs_client->rpc_ops->version == 3) { + if (server->nfs_client->rpc_ops->version != 2) { /* The VFS shouldn't apply the umask to mode bits. We will do * so ourselves when necessary. */ sb->s_flags |= MS_POSIXACL; sb->s_time_gran = 1; } + if (server->nfs_client->rpc_ops->version == 4) + sb->s_xattr = nfs4_xattr_handlers; sb->s_op = &nfs_sops; nfs_initialise_sb(sb); @@ -2520,22 +2522,6 @@ static void nfs4_clone_super(struct super_block *sb, nfs_initialise_sb(sb); } -/* - * Set up an NFS4 superblock - */ -static void nfs4_fill_super(struct super_block *sb) -{ - sb->s_time_gran = 1; - sb->s_op = &nfs4_sops; - /* - * The VFS shouldn't apply the umask to mode bits. We will do - * so ourselves when necessary. - */ - sb->s_flags |= MS_POSIXACL; - sb->s_xattr = nfs4_xattr_handlers; - nfs_initialise_sb(sb); -} - static void nfs4_validate_mount_flags(struct nfs_parsed_mount_data *args) { args->flags &= ~(NFS_MOUNT_NONLM|NFS_MOUNT_NOACL|NFS_MOUNT_VER3| @@ -2723,7 +2709,7 @@ nfs4_remote_mount(struct file_system_type *fs_type, int flags, if (!s->s_root) { /* initial superblock/root creation */ - nfs4_fill_super(s); + nfs_fill_super(s, data); nfs_fscache_get_super_cookie(s, data->fscache_uniq, NULL); } @@ -3074,7 +3060,7 @@ nfs4_remote_referral_mount(struct file_system_type *fs_type, int flags, if (!s->s_root) { /* initial superblock/root creation */ - nfs4_fill_super(s); + nfs_fill_super(s, NULL); nfs_fscache_get_super_cookie(s, NULL, data); } -- 1.7.9.5 -- To unsubscribe from this list: send the line "unsubscribe linux-nfs" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html