Commit a777f715 authored by Rohit Chavan's avatar Rohit Chavan Committed by David S. Miller

net: ipv4: tcp: fixed comment coding style issue

Fixed a coding style issue
Signed-off-by: default avatarRohit Chavan <roheetchavan@gmail.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 241c4667
...@@ -2183,7 +2183,7 @@ void tcp_close(struct sock *sk, long timeout) ...@@ -2183,7 +2183,7 @@ void tcp_close(struct sock *sk, long timeout)
/* Now socket is owned by kernel and we acquire BH lock /* 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(); local_bh_disable();
bh_lock_sock(sk); bh_lock_sock(sk);
...@@ -2471,7 +2471,8 @@ static int do_tcp_setsockopt(struct sock *sk, int level, ...@@ -2471,7 +2471,8 @@ static int do_tcp_setsockopt(struct sock *sk, int level,
case TCP_MAXSEG: case TCP_MAXSEG:
/* Values greater than interface MTU won't take effect. However /* Values greater than interface MTU won't take effect. However
* at the point when this call is done we typically don't yet * 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)) { if (val && (val < TCP_MIN_MSS || val > MAX_TCP_WINDOW)) {
err = -EINVAL; err = -EINVAL;
break; break;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment