aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorEric Dumazet <edumazet@google.com>2015-03-12 16:44:05 -0700
committerDavid S. Miller <davem@davemloft.net>2015-03-12 22:58:12 -0400
commitd34ac51b76e8c7de6094cfb11780ef9c2b93469f (patch)
treecea87a916964c0d0c1bedba4e7e5cbacf4603888 /include
parentinet: add TCP_NEW_SYN_RECV state (diff)
downloadlinux-dev-d34ac51b76e8c7de6094cfb11780ef9c2b93469f.tar.xz
linux-dev-d34ac51b76e8c7de6094cfb11780ef9c2b93469f.zip
inet: add ireq_state field to inet_request_sock
We need to identify request sock when they'll be visible in global ehash table. ireq_state is an alias to req.__req_common.skc_state. Its value is set to TCP_NEW_SYN_RECV Signed-off-by: Eric Dumazet <edumazet@google.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include')
-rw-r--r--include/net/inet_sock.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/net/inet_sock.h b/include/net/inet_sock.h
index 30f7170abbf3..b31f01de5cd6 100644
--- a/include/net/inet_sock.h
+++ b/include/net/inet_sock.h
@@ -27,6 +27,7 @@
#include <net/sock.h>
#include <net/request_sock.h>
#include <net/netns/hash.h>
+#include <net/tcp_states.h>
/** struct ip_options - IP Options
*
@@ -79,6 +80,7 @@ struct inet_request_sock {
#define ir_iif req.__req_common.skc_bound_dev_if
#define ir_cookie req.__req_common.skc_cookie
#define ireq_net req.__req_common.skc_net
+#define ireq_state req.__req_common.skc_state
kmemcheck_bitfield_begin(flags);
u16 snd_wscale : 4,
@@ -250,6 +252,7 @@ static inline struct request_sock *inet_reqsk_alloc(struct request_sock_ops *ops
kmemcheck_annotate_bitfield(ireq, flags);
ireq->opt = NULL;
atomic64_set(&ireq->ir_cookie, 0);
+ ireq->ireq_state = TCP_NEW_SYN_RECV;
}
return req;