aboutsummaryrefslogtreecommitdiffstats
path: root/net/ipv4/tcp.c
diff options
context:
space:
mode:
authorRohit Chavan <roheetchavan@gmail.com>2017-05-22 11:59:15 +0530
committerDavid S. Miller <davem@davemloft.net>2017-05-22 12:14:51 -0400
commita777f715caf0ff95652a872d1af24942cf5002fc (patch)
tree8e4f99d3b2106f90d09806a2ba041e8aa7d3e231 /net/ipv4/tcp.c
parentnet: socket: fix a typo in sockfd_lookup(). (diff)
downloadlinux-dev-a777f715caf0ff95652a872d1af24942cf5002fc.tar.xz
linux-dev-a777f715caf0ff95652a872d1af24942cf5002fc.zip
net: ipv4: tcp: fixed comment coding style issue
Fixed a coding style issue Signed-off-by: Rohit Chavan <roheetchavan@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4/tcp.c')
-rw-r--r--net/ipv4/tcp.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/net/ipv4/tcp.c b/net/ipv4/tcp.c
index b5d18484746d..9a56077eafea 100644
--- a/net/ipv4/tcp.c
+++ b/net/ipv4/tcp.c
@@ -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;