aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux')
-rw-r--r--include/linux/ip.h2
-rw-r--r--include/linux/tcp.h1
2 files changed, 2 insertions, 1 deletions
diff --git a/include/linux/ip.h b/include/linux/ip.h
index 33e8a19a1a0f..2c54bbd3da76 100644
--- a/include/linux/ip.h
+++ b/include/linux/ip.h
@@ -128,6 +128,7 @@ static inline struct inet_request_sock *inet_rsk(const struct request_sock *sk)
128 return (struct inet_request_sock *)sk; 128 return (struct inet_request_sock *)sk;
129} 129}
130 130
131struct inet_bind_bucket;
131struct ipv6_pinfo; 132struct ipv6_pinfo;
132 133
133struct inet_sock { 134struct inet_sock {
@@ -157,6 +158,7 @@ struct inet_sock {
157 int mc_index; /* Multicast device index */ 158 int mc_index; /* Multicast device index */
158 __u32 mc_addr; 159 __u32 mc_addr;
159 struct ip_mc_socklist *mc_list; /* Group array */ 160 struct ip_mc_socklist *mc_list; /* Group array */
161 struct inet_bind_bucket *bind_hash;
160 /* 162 /*
161 * Following members are used to retain the infomation to build 163 * Following members are used to retain the infomation to build
162 * an ip header on each ip fragmentation while the socket is corked. 164 * an ip header on each ip fragmentation while the socket is corked.
diff --git a/include/linux/tcp.h b/include/linux/tcp.h
index ec580a560e8c..e70ab19652db 100644
--- a/include/linux/tcp.h
+++ b/include/linux/tcp.h
@@ -258,7 +258,6 @@ struct tcp_sock {
258 __u32 snd_sml; /* Last byte of the most recently transmitted small packet */ 258 __u32 snd_sml; /* Last byte of the most recently transmitted small packet */
259 __u32 rcv_tstamp; /* timestamp of last received ACK (for keepalives) */ 259 __u32 rcv_tstamp; /* timestamp of last received ACK (for keepalives) */
260 __u32 lsndtime; /* timestamp of last sent data packet (for restart window) */ 260 __u32 lsndtime; /* timestamp of last sent data packet (for restart window) */
261 struct inet_bind_bucket *bind_hash;
262 /* Delayed ACK control data */ 261 /* Delayed ACK control data */
263 struct { 262 struct {
264 __u8 pending; /* ACK is pending */ 263 __u8 pending; /* ACK is pending */