diff options
author | Petr Tesarik <ptesarik@suse.cz> | 2008-11-14 01:44:11 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-11-14 01:44:11 -0500 |
commit | 38a7ddffa4b79d7b1fbc9bf2fa82b21b72622858 (patch) | |
tree | 6711f02448d77e748f416dc7f66b1e38fbd226ba /include/net/tcp.h | |
parent | 00bcd522ea0a62f5e2a9c6ad4924cbbd8d05b026 (diff) |
tcp: remove an unnecessary field in struct tcp_skb_cb
The urg_ptr field is not used anywhere and is merely confusing.
Signed-off-by: Petr Tesarik <ptesarik@suse.cz>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/net/tcp.h')
-rw-r--r-- | include/net/tcp.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/net/tcp.h b/include/net/tcp.h index 438014d57610..8f26b28fb407 100644 --- a/include/net/tcp.h +++ b/include/net/tcp.h | |||
@@ -590,7 +590,6 @@ struct tcp_skb_cb { | |||
590 | #define TCPCB_EVER_RETRANS 0x80 /* Ever retransmitted frame */ | 590 | #define TCPCB_EVER_RETRANS 0x80 /* Ever retransmitted frame */ |
591 | #define TCPCB_RETRANS (TCPCB_SACKED_RETRANS|TCPCB_EVER_RETRANS) | 591 | #define TCPCB_RETRANS (TCPCB_SACKED_RETRANS|TCPCB_EVER_RETRANS) |
592 | 592 | ||
593 | __u16 urg_ptr; /* Valid w/URG flags is set. */ | ||
594 | __u32 ack_seq; /* Sequence number ACK'd */ | 593 | __u32 ack_seq; /* Sequence number ACK'd */ |
595 | }; | 594 | }; |
596 | 595 | ||