[PATCH] cifs: MODULE_PARM_DESC

From: Magnus Damm
Date: Mon Mar 21 2005 - 10:57:59 EST


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 <damm@xxxxxxxxxxxxx>

--- 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");
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/