Lines Matching refs:CIFSMaxBufSize
80 unsigned int CIFSMaxBufSize = CIFS_MAX_MSGSIZE;
81 module_param(CIFSMaxBufSize, uint, 0444);
82 MODULE_PARM_DESC(CIFSMaxBufSize, "Network buffer size (not including header) "
1417 if (CIFSMaxBufSize < 8192) {
1420 CIFSMaxBufSize = 8192;
1421 } else if (CIFSMaxBufSize > 1024*127) {
1422 CIFSMaxBufSize = 1024 * 127;
1424 CIFSMaxBufSize &= 0x1FE00; /* Round size to even 512 byte mult*/
1427 cifs_dbg(VFS, "CIFSMaxBufSize %d 0x%x\n",
1428 CIFSMaxBufSize, CIFSMaxBufSize);
1431 CIFSMaxBufSize + max_hdr_size, 0,
1433 CIFSMaxBufSize + max_hdr_size,