diff options
author | Pavel Emelyanov <xemul@openvz.org> | 2007-10-15 05:38:08 -0400 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2007-10-15 15:26:41 -0400 |
commit | 321a3a99e4717b960e21c62fc6a140d21453df7f (patch) | |
tree | 118ae0f39bd2344b731670d601abf0bcbbf8faa7 /include/net/inet_frag.h | |
parent | 277e650ddfc6944ef5f5466fd898b8da7f06cd82 (diff) |
[INET]: Consolidate xxx_the secret_rebuild
This code works with the generic data types as well, so
move this into inet_fragment.c
This move makes it possible to hide the secret_timer
management and the secret_rebuild routine completely in
the inet_fragment.c
Introduce the ->hashfn() callback in inet_frags() to get
the hashfun for a given inet_frag_queue() object.
Signed-off-by: Pavel Emelyanov <xemul@openvz.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/net/inet_frag.h')
-rw-r--r-- | include/net/inet_frag.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/net/inet_frag.h b/include/net/inet_frag.h index 9902363f5bcc..e374412ff42b 100644 --- a/include/net/inet_frag.h +++ b/include/net/inet_frag.h | |||
@@ -36,6 +36,8 @@ struct inet_frags { | |||
36 | atomic_t mem; | 36 | atomic_t mem; |
37 | struct timer_list secret_timer; | 37 | struct timer_list secret_timer; |
38 | struct inet_frags_ctl *ctl; | 38 | struct inet_frags_ctl *ctl; |
39 | |||
40 | unsigned int (*hashfn)(struct inet_frag_queue *); | ||
39 | }; | 41 | }; |
40 | 42 | ||
41 | void inet_frags_init(struct inet_frags *); | 43 | void inet_frags_init(struct inet_frags *); |