diff options
author | Steve French <sfrench@us.ibm.com> | 2005-10-05 18:14:33 -0400 |
---|---|---|
committer | Steve French <sfrench@us.ibm.com> | 2005-10-05 18:14:33 -0400 |
commit | 4a77118cd5018fec11bf86f6f8d659352ad9a92b (patch) | |
tree | eab48dadfdf7398815b2bba5de93ff2332727386 /fs/cifs/connect.c | |
parent | 37c0eb4677f733a773df6287b0f73f00274402e3 (diff) |
CIFS: Allow wsize to exceed CIFSMaxBufSize
This allows cifs_writepages to send data in larger chunks from the page
cache, without requiring larger memory allocations in other cases.
Signed-off-by: Dave Kleikamp <shaggy@austin.ibm.com>
Signed-off-by: Steve French <sfrench@us.ibm.com>
Diffstat (limited to 'fs/cifs/connect.c')
-rw-r--r-- | fs/cifs/connect.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/cifs/connect.c b/fs/cifs/connect.c index f05d9e2016d5..31eb9a3bf627 100644 --- a/fs/cifs/connect.c +++ b/fs/cifs/connect.c | |||
@@ -1740,7 +1740,7 @@ cifs_mount(struct super_block *sb, struct cifs_sb_info *cifs_sb, | |||
1740 | cifs_sb->rsize = volume_info.rsize; | 1740 | cifs_sb->rsize = volume_info.rsize; |
1741 | else | 1741 | else |
1742 | cifs_sb->rsize = srvTcp->maxBuf - MAX_CIFS_HDR_SIZE; /* default */ | 1742 | cifs_sb->rsize = srvTcp->maxBuf - MAX_CIFS_HDR_SIZE; /* default */ |
1743 | if((volume_info.wsize) && (volume_info.wsize <= CIFSMaxBufSize)) | 1743 | if(volume_info.wsize) |
1744 | cifs_sb->wsize = volume_info.wsize; | 1744 | cifs_sb->wsize = volume_info.wsize; |
1745 | else | 1745 | else |
1746 | cifs_sb->wsize = CIFSMaxBufSize; /* default */ | 1746 | cifs_sb->wsize = CIFSMaxBufSize; /* default */ |