diff options
author | Ronnie Sahlberg <lsahlber@redhat.com> | 2020-12-14 09:40:17 +0300 |
---|---|---|
committer | Steve French <stfrench@microsoft.com> | 2020-12-14 18:26:30 +0300 |
commit | 522aa3b575322597efdd64a517c65b2f43fb6b9c (patch) | |
tree | ca6b3fc6fe95a0dd1703e017a7be998c9fd369c7 /fs/cifs/fs_context.c | |
parent | c741cba2cd1d145c71f928c329cac007e6f99e42 (diff) | |
download | linux-522aa3b575322597efdd64a517c65b2f43fb6b9c.tar.xz |
cifs: move [brw]size from cifs_sb to cifs_sb->ctx
Signed-off-by: Ronnie Sahlberg <lsahlber@redhat.com>
Signed-off-by: Steve French <stfrench@microsoft.com>
Diffstat (limited to 'fs/cifs/fs_context.c')
-rw-r--r-- | fs/cifs/fs_context.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/fs/cifs/fs_context.c b/fs/cifs/fs_context.c index 4d8caf5b9519..b7f5633a1c64 100644 --- a/fs/cifs/fs_context.c +++ b/fs/cifs/fs_context.c @@ -784,12 +784,15 @@ static int smb3_fs_context_parse_param(struct fs_context *fc, goto cifs_parse_mount_err; } ctx->bsize = result.uint_32; + ctx->got_bsize = true; break; case Opt_rsize: ctx->rsize = result.uint_32; + ctx->got_rsize = true; break; case Opt_wsize: ctx->wsize = result.uint_32; + ctx->got_wsize = true; break; case Opt_actimeo: ctx->actimeo = HZ * result.uint_32; |