summary refs log tree commit diff
diff options
context:
space:
mode:
authorPetr Tesarik <ptesarik@suse.cz>2008-11-13 22:44:11 -0800
committerDavid S. Miller <davem@davemloft.net>2008-11-13 22:44:11 -0800
commit38a7ddffa4b79d7b1fbc9bf2fa82b21b72622858 (patch)
tree6711f02448d77e748f416dc7f66b1e38fbd226ba
parent00bcd522ea0a62f5e2a9c6ad4924cbbd8d05b026 (diff)
downloadlinux-38a7ddffa4b79d7b1fbc9bf2fa82b21b72622858.tar.gz
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>
-rw-r--r--include/net/tcp.h1
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 {
 #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	*/
 };