diff options
Diffstat (limited to 'fs')
-rw-r--r-- | fs/nfs/client.c | 4 | ||||
-rw-r--r-- | fs/nfs/super.c | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/fs/nfs/client.c b/fs/nfs/client.c index 2accb67427c6..7547600b6174 100644 --- a/fs/nfs/client.c +++ b/fs/nfs/client.c | |||
@@ -675,7 +675,7 @@ static int nfs_init_server(struct nfs_server *server, | |||
675 | server->nfs_client = clp; | 675 | server->nfs_client = clp; |
676 | 676 | ||
677 | /* Initialise the client representation from the mount data */ | 677 | /* Initialise the client representation from the mount data */ |
678 | server->flags = data->flags & NFS_MOUNT_FLAGMASK; | 678 | server->flags = data->flags; |
679 | 679 | ||
680 | if (data->rsize) | 680 | if (data->rsize) |
681 | server->rsize = nfs_block_size(data->rsize, NULL); | 681 | server->rsize = nfs_block_size(data->rsize, NULL); |
@@ -1072,7 +1072,7 @@ static int nfs4_init_server(struct nfs_server *server, | |||
1072 | goto error; | 1072 | goto error; |
1073 | 1073 | ||
1074 | /* Initialise the client representation from the mount data */ | 1074 | /* Initialise the client representation from the mount data */ |
1075 | server->flags = data->flags & NFS_MOUNT_FLAGMASK; | 1075 | server->flags = data->flags; |
1076 | server->caps |= NFS_CAP_ATOMIC_OPEN; | 1076 | server->caps |= NFS_CAP_ATOMIC_OPEN; |
1077 | 1077 | ||
1078 | if (data->rsize) | 1078 | if (data->rsize) |
diff --git a/fs/nfs/super.c b/fs/nfs/super.c index e527fab40419..81686aeb1b5d 100644 --- a/fs/nfs/super.c +++ b/fs/nfs/super.c | |||
@@ -1550,7 +1550,7 @@ static int nfs_validate_mount_data(void *options, | |||
1550 | * Translate to nfs_parsed_mount_data, which nfs_fill_super | 1550 | * Translate to nfs_parsed_mount_data, which nfs_fill_super |
1551 | * can deal with. | 1551 | * can deal with. |
1552 | */ | 1552 | */ |
1553 | args->flags = data->flags; | 1553 | args->flags = data->flags & NFS_MOUNT_FLAGMASK; |
1554 | args->rsize = data->rsize; | 1554 | args->rsize = data->rsize; |
1555 | args->wsize = data->wsize; | 1555 | args->wsize = data->wsize; |
1556 | args->timeo = data->timeo; | 1556 | args->timeo = data->timeo; |