diff options
author | Arnaldo Carvalho de Melo <acme@ghostprotocols.net> | 2005-08-09 23:09:46 -0400 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2005-08-29 18:42:18 -0400 |
commit | e48c414ee61f4ac8d5cff2973e66a7cbc8a93aa5 (patch) | |
tree | c4656efe48b75adf5742514c3e4286007f20bdca /include/net/inet_timewait_sock.h | |
parent | 8feaf0c0a5488b3d898a9c207eb6678f44ba3f26 (diff) |
[INET]: Generalise the TCP sock ID lookup routines
And also some TIME_WAIT functions.
[acme@toy net-2.6.14]$ grep built-in /tmp/before.size /tmp/after.size
/tmp/before.size: 282955 13122 9312 305389 4a8ed net/ipv4/built-in.o
/tmp/after.size: 281566 13122 9312 304000 4a380 net/ipv4/built-in.o
[acme@toy net-2.6.14]$
I kept them still inlined, will uninline at some point to see what
would be the performance difference.
Signed-off-by: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/net/inet_timewait_sock.h')
-rw-r--r-- | include/net/inet_timewait_sock.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/include/net/inet_timewait_sock.h b/include/net/inet_timewait_sock.h index ce117048f2fd..020f28058fd4 100644 --- a/include/net/inet_timewait_sock.h +++ b/include/net/inet_timewait_sock.h | |||
@@ -17,6 +17,7 @@ | |||
17 | 17 | ||
18 | #include <linux/config.h> | 18 | #include <linux/config.h> |
19 | 19 | ||
20 | #include <linux/ip.h> | ||
20 | #include <linux/list.h> | 21 | #include <linux/list.h> |
21 | #include <linux/types.h> | 22 | #include <linux/types.h> |
22 | 23 | ||
@@ -32,6 +33,7 @@ | |||
32 | #endif | 33 | #endif |
33 | 34 | ||
34 | struct inet_bind_bucket; | 35 | struct inet_bind_bucket; |
36 | struct inet_hashinfo; | ||
35 | 37 | ||
36 | /* | 38 | /* |
37 | * This is a TIME_WAIT sock. It works around the memory consumption | 39 | * This is a TIME_WAIT sock. It works around the memory consumption |
@@ -139,4 +141,11 @@ static inline void inet_twsk_put(struct inet_timewait_sock *tw) | |||
139 | kmem_cache_free(tw->tw_prot->twsk_slab, tw); | 141 | kmem_cache_free(tw->tw_prot->twsk_slab, tw); |
140 | } | 142 | } |
141 | } | 143 | } |
144 | |||
145 | extern void __inet_twsk_kill(struct inet_timewait_sock *tw, | ||
146 | struct inet_hashinfo *hashinfo); | ||
147 | |||
148 | extern void __inet_twsk_hashdance(struct inet_timewait_sock *tw, | ||
149 | struct sock *sk, | ||
150 | struct inet_hashinfo *hashinfo); | ||
142 | #endif /* _INET_TIMEWAIT_SOCK_ */ | 151 | #endif /* _INET_TIMEWAIT_SOCK_ */ |