diff options
author | David S. Miller <davem@davemloft.net> | 2008-06-28 04:19:40 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-06-28 04:19:40 -0400 |
commit | 1b63ba8a86c85524a8d7e5953b314ce71ebcb9c9 (patch) | |
tree | fe3dc41cbb47ae12b7c3faf6a88b097349e50d5a /net/ipv4/tcp_ipv4.c | |
parent | e35c3269edba151e1c703d87068a28ce2cd65bb0 (diff) | |
parent | d420895efb259a78dda50f95289571faa6e10e41 (diff) |
Merge branch 'master' of master.kernel.org:/pub/scm/linux/kernel/git/davem/net-2.6
Conflicts:
drivers/net/wireless/iwlwifi/iwl4965-base.c
Diffstat (limited to 'net/ipv4/tcp_ipv4.c')
-rw-r--r-- | net/ipv4/tcp_ipv4.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/net/ipv4/tcp_ipv4.c b/net/ipv4/tcp_ipv4.c index 0db9b75c1fa2..4300bcf2ceaf 100644 --- a/net/ipv4/tcp_ipv4.c +++ b/net/ipv4/tcp_ipv4.c | |||
@@ -2189,7 +2189,7 @@ static void get_tcp4_sock(struct sock *sk, struct seq_file *f, int i, int *len) | |||
2189 | } | 2189 | } |
2190 | 2190 | ||
2191 | seq_printf(f, "%4d: %08X:%04X %08X:%04X %02X %08X:%08X %02X:%08lX " | 2191 | seq_printf(f, "%4d: %08X:%04X %08X:%04X %02X %08X:%08X %02X:%08lX " |
2192 | "%08X %5d %8d %lu %d %p %u %u %u %u %d%n", | 2192 | "%08X %5d %8d %lu %d %p %lu %lu %u %u %d%n", |
2193 | i, src, srcp, dest, destp, sk->sk_state, | 2193 | i, src, srcp, dest, destp, sk->sk_state, |
2194 | tp->write_seq - tp->snd_una, | 2194 | tp->write_seq - tp->snd_una, |
2195 | sk->sk_state == TCP_LISTEN ? sk->sk_ack_backlog : | 2195 | sk->sk_state == TCP_LISTEN ? sk->sk_ack_backlog : |
@@ -2201,8 +2201,8 @@ static void get_tcp4_sock(struct sock *sk, struct seq_file *f, int i, int *len) | |||
2201 | icsk->icsk_probes_out, | 2201 | icsk->icsk_probes_out, |
2202 | sock_i_ino(sk), | 2202 | sock_i_ino(sk), |
2203 | atomic_read(&sk->sk_refcnt), sk, | 2203 | atomic_read(&sk->sk_refcnt), sk, |
2204 | icsk->icsk_rto, | 2204 | jiffies_to_clock_t(icsk->icsk_rto), |
2205 | icsk->icsk_ack.ato, | 2205 | jiffies_to_clock_t(icsk->icsk_ack.ato), |
2206 | (icsk->icsk_ack.quick << 1) | icsk->icsk_ack.pingpong, | 2206 | (icsk->icsk_ack.quick << 1) | icsk->icsk_ack.pingpong, |
2207 | tp->snd_cwnd, | 2207 | tp->snd_cwnd, |
2208 | tp->snd_ssthresh >= 0xFFFF ? -1 : tp->snd_ssthresh, | 2208 | tp->snd_ssthresh >= 0xFFFF ? -1 : tp->snd_ssthresh, |