diff options
Diffstat (limited to 'net/ipv6/tcp_ipv6.c')
| -rw-r--r-- | net/ipv6/tcp_ipv6.c | 7 | 
1 files changed, 3 insertions, 4 deletions
diff --git a/net/ipv6/tcp_ipv6.c b/net/ipv6/tcp_ipv6.c index 715965f0fac..40ea9c36d24 100644 --- a/net/ipv6/tcp_ipv6.c +++ b/net/ipv6/tcp_ipv6.c @@ -1299,7 +1299,6 @@ static int tcp_v6_conn_request(struct sock *sk, struct sk_buff *skb)  	treq = inet6_rsk(req);  	ipv6_addr_copy(&treq->rmt_addr, &ipv6_hdr(skb)->saddr);  	ipv6_addr_copy(&treq->loc_addr, &ipv6_hdr(skb)->daddr); -	treq->pktopts = NULL;  	if (!want_cookie)  		TCP_ECN_create_request(req, tcp_hdr(skb)); @@ -2037,7 +2036,7 @@ static void get_tcp6_sock(struct seq_file *seq, struct sock *sp, int i)  	seq_printf(seq,  		   "%4d: %08X%08X%08X%08X:%04X %08X%08X%08X%08X:%04X " -		   "%02X %08X:%08X %02X:%08lX %08X %5d %8d %lu %d %p %u %u %u %u %d\n", +		   "%02X %08X:%08X %02X:%08lX %08X %5d %8d %lu %d %p %lu %lu %u %u %d\n",  		   i,  		   src->s6_addr32[0], src->s6_addr32[1],  		   src->s6_addr32[2], src->s6_addr32[3], srcp, @@ -2053,8 +2052,8 @@ static void get_tcp6_sock(struct seq_file *seq, struct sock *sp, int i)  		   icsk->icsk_probes_out,  		   sock_i_ino(sp),  		   atomic_read(&sp->sk_refcnt), sp, -		   icsk->icsk_rto, -		   icsk->icsk_ack.ato, +		   jiffies_to_clock_t(icsk->icsk_rto), +		   jiffies_to_clock_t(icsk->icsk_ack.ato),  		   (icsk->icsk_ack.quick << 1 ) | icsk->icsk_ack.pingpong,  		   tp->snd_cwnd, tp->snd_ssthresh>=0xFFFF?-1:tp->snd_ssthresh  		   );  |