aboutsummaryrefslogtreecommitdiffstats
path: root/include
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 /include
parentisdn: use %pI4, remove get_{u8/u16/u32} and put_{u8/u16/u32} inlines (diff)
downloadlinux-dev-38a7ddffa4b79d7b1fbc9bf2fa82b21b72622858.tar.xz
linux-dev-38a7ddffa4b79d7b1fbc9bf2fa82b21b72622858.zip
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')
-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 */
};