net: ipv4: tcp: fixed comment coding style issue
authorRohit Chavan <roheetchavan@gmail.com>
Mon, 22 May 2017 06:29:15 +0000 (11:59 +0530)
committerDavid S. Miller <davem@davemloft.net>
Mon, 22 May 2017 16:14:51 +0000 (12:14 -0400)
Fixed a coding style issue

Signed-off-by: Rohit Chavan <roheetchavan@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/ipv4/tcp.c

index b5d1848..9a56077 100644 (file)
@@ -2183,7 +2183,7 @@ adjudge_to_death:
 
 
        /* Now socket is owned by kernel and we acquire BH lock
-          to finish close. No need to check for user refs.
+        *  to finish close. No need to check for user refs.
         */
        local_bh_disable();
        bh_lock_sock(sk);
@@ -2471,7 +2471,8 @@ static int do_tcp_setsockopt(struct sock *sk, int level,
        case TCP_MAXSEG:
                /* Values greater than interface MTU won't take effect. However
                 * at the point when this call is done we typically don't yet
-                * know which interface is going to be used */
+                * know which interface is going to be used
+                */
                if (val && (val < TCP_MIN_MSS || val > MAX_TCP_WINDOW)) {
                        err = -EINVAL;
                        break;