Lines Matching refs:CIFSMaxBufSize
102 unsigned int CIFSMaxBufSize = CIFS_MAX_MSGSIZE;
103 module_param(CIFSMaxBufSize, uint, 0444);
104 MODULE_PARM_DESC(CIFSMaxBufSize, "Network buffer size (not including header) "
1682 if (CIFSMaxBufSize < 8192) {
1685 CIFSMaxBufSize = 8192;
1686 } else if (CIFSMaxBufSize > 1024*127) {
1687 CIFSMaxBufSize = 1024 * 127;
1689 CIFSMaxBufSize &= 0x1FE00; /* Round size to even 512 byte mult*/
1692 cifs_dbg(VFS, "CIFSMaxBufSize %d 0x%x\n",
1693 CIFSMaxBufSize, CIFSMaxBufSize);
1696 CIFSMaxBufSize + max_hdr_size, 0,
1698 CIFSMaxBufSize + max_hdr_size,