Whamcloud - gitweb
- mxlnd updates from upstream.
[fs/lustre-release.git] / lnet / klnds / mxlnd / mxlnd_modparams.c
index 37d77f1..d36a188 100644 (file)
@@ -30,7 +30,7 @@ CFS_MODULE_PARM(n_waitd, "i", int, 0444,
 
 static int max_peers = MXLND_MAX_PEERS;
 CFS_MODULE_PARM(max_peers, "i", int, 0444,
-               "maximum number of peers that may connect");
+                "maximum number of peers that may connect");
 
 static int cksum = MXLND_CKSUM;
 CFS_MODULE_PARM(cksum, "i", int, 0644,
@@ -38,27 +38,26 @@ CFS_MODULE_PARM(cksum, "i", int, 0644,
 
 static int ntx = MXLND_NTX;
 CFS_MODULE_PARM(ntx, "i", int, 0444,
-               "# of total tx message descriptors");
+                "# of total tx message descriptors");
 
 static int credits = MXLND_MSG_QUEUE_DEPTH;
 CFS_MODULE_PARM(credits, "i", int, 0444,
-               "# concurrent sends");
+                "# concurrent sends");
 
 static int board = MXLND_MX_BOARD;
 CFS_MODULE_PARM(board, "i", int, 0444,
-               "index value of the Myrinet board (NIC)");
+                "index value of the Myrinet board (NIC)");
 
 static int ep_id = MXLND_MX_EP_ID;
-CFS_MODULE_PARM(ep_id, "i", int, 0444,
-               "MX endpoint ID");
+CFS_MODULE_PARM(ep_id, "i", int, 0444, "MX endpoint ID");
 
 static int polling = MXLND_POLLING;
 CFS_MODULE_PARM(polling, "i", int, 0444,
-               "Use 0 to block (wait). A value > 0 will poll that many times before blocking");
+                "Use 0 to block (wait). A value > 0 will poll that many times before blocking");
 
 static char *hosts = NULL;
 CFS_MODULE_PARM(hosts, "s", charp, 0444,
-               "IP-to-hostname resolution file");
+                "IP-to-hostname resolution file");
 
 kmx_tunables_t kmxlnd_tunables = {
         .kmx_n_waitd            = &n_waitd,