aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux')
-rw-r--r--include/linux/ip.h4
-rw-r--r--include/linux/ipv6.h2
-rw-r--r--include/linux/tcp.h6
3 files changed, 6 insertions, 6 deletions
diff --git a/include/linux/ip.h b/include/linux/ip.h
index d5b7c907204e..31e7cedd9f84 100644
--- a/include/linux/ip.h
+++ b/include/linux/ip.h
@@ -109,7 +109,7 @@ struct ip_options {
109#define optlength(opt) (sizeof(struct ip_options) + opt->optlen) 109#define optlength(opt) (sizeof(struct ip_options) + opt->optlen)
110 110
111struct inet_request_sock { 111struct inet_request_sock {
112 struct open_request req; 112 struct request_sock req;
113 u32 loc_addr; 113 u32 loc_addr;
114 u32 rmt_addr; 114 u32 rmt_addr;
115 u16 rmt_port; 115 u16 rmt_port;
@@ -123,7 +123,7 @@ struct inet_request_sock {
123 struct ip_options *opt; 123 struct ip_options *opt;
124}; 124};
125 125
126static inline struct inet_request_sock *inet_rsk(const struct open_request *sk) 126static inline struct inet_request_sock *inet_rsk(const struct request_sock *sk)
127{ 127{
128 return (struct inet_request_sock *)sk; 128 return (struct inet_request_sock *)sk;
129} 129}
diff --git a/include/linux/ipv6.h b/include/linux/ipv6.h
index 98acdbf3d446..6fcd6a0ade24 100644
--- a/include/linux/ipv6.h
+++ b/include/linux/ipv6.h
@@ -201,7 +201,7 @@ struct tcp6_request_sock {
201 int iif; 201 int iif;
202}; 202};
203 203
204static inline struct tcp6_request_sock *tcp6_rsk(const struct open_request *sk) 204static inline struct tcp6_request_sock *tcp6_rsk(const struct request_sock *sk)
205{ 205{
206 return (struct tcp6_request_sock *)sk; 206 return (struct tcp6_request_sock *)sk;
207} 207}
diff --git a/include/linux/tcp.h b/include/linux/tcp.h
index 86771b37b80d..fb54292a15aa 100644
--- a/include/linux/tcp.h
+++ b/include/linux/tcp.h
@@ -236,7 +236,7 @@ struct tcp_request_sock {
236 __u32 snt_isn; 236 __u32 snt_isn;
237}; 237};
238 238
239static inline struct tcp_request_sock *tcp_rsk(const struct open_request *req) 239static inline struct tcp_request_sock *tcp_rsk(const struct request_sock *req)
240{ 240{
241 return (struct tcp_request_sock *)req; 241 return (struct tcp_request_sock *)req;
242} 242}
@@ -393,8 +393,8 @@ struct tcp_sock {
393 struct tcp_listen_opt *listen_opt; 393 struct tcp_listen_opt *listen_opt;
394 394
395 /* FIFO of established children */ 395 /* FIFO of established children */
396 struct open_request *accept_queue; 396 struct request_sock *accept_queue;
397 struct open_request *accept_queue_tail; 397 struct request_sock *accept_queue_tail;
398 398
399 unsigned int keepalive_time; /* time before keep alive takes place */ 399 unsigned int keepalive_time; /* time before keep alive takes place */
400 unsigned int keepalive_intvl; /* time interval between keep alive probes */ 400 unsigned int keepalive_intvl; /* time interval between keep alive probes */