diff options
| author | Arnaldo Carvalho de Melo <acme@conectiva.com.br> | 2004-12-27 19:57:10 -0200 |
|---|---|---|
| committer | David S. Miller <davem@nuts.davemloft.net> | 2004-12-27 19:57:10 -0200 |
| commit | 018b2fb54b77b14ed667844fded529f371de7f81 (patch) | |
| tree | 9e6c6170d303a28e49cb6832b2c71a87d50d734d /net/ipv4/tcp_timer.c | |
| parent | 463f7d6a320c2af5721f73e048458e249dcccb2b (diff) | |
[INET] move inet_sock into inet_opt and rename it to inet_sock
With this we can remove all the cut'n'pasted layouts in all inet_sock
derived classes, such as tcp_sock, udp_sock, sctp_sock, etc.
Signed-off-by: Arnaldo Carvalho de Melo <acme@conectiva.com.br>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4/tcp_timer.c')
| -rw-r--r-- | net/ipv4/tcp_timer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv4/tcp_timer.c b/net/ipv4/tcp_timer.c index 3b4d82176a84..28888af7dcf0 100644 --- a/net/ipv4/tcp_timer.c +++ b/net/ipv4/tcp_timer.c @@ -332,7 +332,7 @@ static void tcp_retransmit_timer(struct sock *sk) */ #ifdef TCP_DEBUG if (net_ratelimit()) { - struct inet_opt *inet = inet_sk(sk); + struct inet_sock *inet = inet_sk(sk); printk(KERN_DEBUG "TCP: Treason uncloaked! Peer %u.%u.%u.%u:%u/%u shrinks window %u:%u. Repaired.\n", NIPQUAD(inet->daddr), htons(inet->dport), inet->num, tp->snd_una, tp->snd_nxt); |
