staging: lustre: fix comment style
authorSushuruth Sadagopan <sushsada@gmail.com>
Mon, 18 Jan 2016 07:09:23 +0000 (02:09 -0500)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 3 Feb 2016 22:42:33 +0000 (14:42 -0800)
Fix style of several comments.

Signed-off-by: Sushuruth Sadagopan <sushsada@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/lustre/lnet/lnet/config.c

index 284a3c271bc6035372b6ed212d6112b3bcaab849..74d644d7d729db4684c2ce969061662e9ee71fca 100644 (file)
@@ -217,12 +217,16 @@ lnet_parse_networks(struct list_head *nilist, char *networks)
                int niface;
                int rc;
 
-               /* NB we don't check interface conflicts here; it's the LNDs
-                * responsibility (if it cares at all) */
+               /*
+                * NB we don't check interface conflicts here; it's the LNDs
+                * responsibility (if it cares at all)
+                */
 
                if (square != NULL && (comma == NULL || square < comma)) {
-                       /* i.e: o2ib0(ib0)[1,2], number between square
-                        * brackets are CPTs this NI needs to be bond */
+                       /*
+                        * i.e: o2ib0(ib0)[1,2], number between square
+                        * brackets are CPTs this NI needs to be bond
+                        */
                        if (bracket != NULL && bracket > square) {
                                tmp = square;
                                goto failed_syntax;
@@ -609,8 +613,10 @@ lnet_parse_priority(char *str, unsigned int *priority, char **token)
        len = strlen(sep + 1);
 
        if ((sscanf((sep+1), "%u%n", priority, &nob) < 1) || (len != nob)) {
-               /* Update the caller's token pointer so it treats the found
-                  priority as the token to report in the error message. */
+               /*
+                * Update the caller's token pointer so it treats the found
+                * priority as the token to report in the error message.
+                */
                *token += sep - str + 1;
                return -1;
        }
This page took 0.025538 seconds and 5 git commands to generate.