From: Jeff Layton Date: Wed, 19 Oct 2011 19:30:37 +0000 (-0400) Subject: cifs: allow cifs_max_pending to be readable under /sys/module/cifs/parameters X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=fef33df88bef6810cc3c4e6edf55c741a8fd68e3;p=GitHub%2Fmt8127%2Fandroid_kernel_alcatel_ttab.git cifs: allow cifs_max_pending to be readable under /sys/module/cifs/parameters Signed-off-by: Jeff Layton --- diff --git a/fs/cifs/cifsfs.c b/fs/cifs/cifsfs.c index b0a2e1647390..fa6724562a41 100644 --- a/fs/cifs/cifsfs.c +++ b/fs/cifs/cifsfs.c @@ -74,7 +74,7 @@ module_param(cifs_min_small, int, 0); MODULE_PARM_DESC(cifs_min_small, "Small network buffers in pool. Default: 30 " "Range: 2 to 256"); unsigned int cifs_max_pending = CIFS_MAX_REQ; -module_param(cifs_max_pending, int, 0); +module_param(cifs_max_pending, int, 0444); MODULE_PARM_DESC(cifs_max_pending, "Simultaneous requests to server. " "Default: 50 Range: 2 to 256"); unsigned short echo_retries = 5;