projects
/
GitHub
/
exynos8895
/
android_kernel_samsung_universal8895.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
00bcd52
)
tcp: remove an unnecessary field in struct tcp_skb_cb
author
Petr Tesarik
<ptesarik@suse.cz>
Fri, 14 Nov 2008 06:44:11 +0000
(22:44 -0800)
committer
David S. Miller
<davem@davemloft.net>
Fri, 14 Nov 2008 06:44:11 +0000
(22:44 -0800)
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>
include/net/tcp.h
patch
|
blob
|
blame
|
history
diff --git
a/include/net/tcp.h
b/include/net/tcp.h
index 438014d57610d3c22355746e7f73e73ec73a3785..8f26b28fb407cb2b4149f0ea425db5d0fb6116c6 100644
(file)
--- 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 */
};