When a filesystem is mounted with ASCII mount options, and no rsize or wsize is given, the client should default to using the preferred sizes reported in the FSINFO request. However it does not. These values are initialised to NFS_MAX_FILE_IO_SIZE and as they are now non-zero, the default does not get applied. So initialise to 0 thus allowing appropriate defaults to apply. Signed-off-by: NeilBrown <neilb@xxxxxxx> --- fs/nfs/super.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/fs/nfs/super.c b/fs/nfs/super.c index 90be551..18c5f85 100644 --- a/fs/nfs/super.c +++ b/fs/nfs/super.c @@ -734,8 +734,8 @@ static struct nfs_parsed_mount_data *nfs_alloc_parsed_mount_data(unsigned int ve data = kzalloc(sizeof(*data), GFP_KERNEL); if (data) { - data->rsize = NFS_MAX_FILE_IO_SIZE; - data->wsize = NFS_MAX_FILE_IO_SIZE; + data->rsize = 0; + data->wsize = 0; data->acregmin = NFS_DEF_ACREGMIN; data->acregmax = NFS_DEF_ACREGMAX; data->acdirmin = NFS_DEF_ACDIRMIN; -- 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