dect
/
linux-2.6
Archived
13
0
Fork 0

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>
This commit is contained in:
Petr Tesarik 2008-11-13 22:44:11 -08:00 committed by David S. Miller
parent 00bcd522ea
commit 38a7ddffa4
1 changed files with 0 additions and 1 deletions

View File

@ -590,7 +590,6 @@ struct tcp_skb_cb {
#define TCPCB_EVER_RETRANS 0x80 /* Ever retransmitted frame */
#define TCPCB_RETRANS (TCPCB_SACKED_RETRANS|TCPCB_EVER_RETRANS)
__u16 urg_ptr; /* Valid w/URG flags is set. */
__u32 ack_seq; /* Sequence number ACK'd */
};