2005-03-21 15:55:43

by Magnus Damm

[permalink] [raw]
Subject: [PATCH] cifs: MODULE_PARM_DESC

Fix parameter description typo, use parameter name "cifs_min_small" instead of
non-existing "cifs_small_rcv" for MODULE_PARM_DESC.

Error detected with section2text.rb, see autoparam patch.

Signed-off-by: Magnus Damm <[email protected]>

--- linux-2.6.12-rc1/fs/cifs/cifsfs.c 2005-03-20 18:20:17.000000000 +0100
+++ linux-2.6.12-rc1-autoparam/fs/cifs/cifsfs.c 2005-03-21 15:57:28.000000000 +0100
@@ -66,7 +66,7 @@
MODULE_PARM_DESC(cifs_min_rcv,"Network buffers in pool. Default: 4 Range: 1 to 64");
unsigned int cifs_min_small = 30;
module_param(cifs_min_small, int, 0);
-MODULE_PARM_DESC(cifs_small_rcv,"Small network buffers in pool. Default: 30 Range: 2 to 256");
+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_PARM_DESC(cifs_max_pending,"Simultaneous requests to server. Default: 50 Range: 2 to 256");


2005-03-21 16:01:34

by Jan Engelhardt

[permalink] [raw]
Subject: Re: [PATCH] cifs: MODULE_PARM_DESC

Hi,


are you sure that all your patches go into mainline?