Skip to content

Commit

Permalink
net: ipv4: tcp: fixed comment coding style issue
Browse files Browse the repository at this point in the history
Fixed a coding style issue

Signed-off-by: Rohit Chavan <roheetchavan@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Rohit Chavan authored and David S. Miller committed May 22, 2017
1 parent 241c466 commit a777f71
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions net/ipv4/tcp.c
Original file line number Diff line number Diff line change
Expand Up @@ -2183,7 +2183,7 @@ void tcp_close(struct sock *sk, long timeout)


/* 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);
Expand Down Expand Up @@ -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;
Expand Down

0 comments on commit a777f71

Please sign in to comment.