diff options
author | Alexey Dobriyan <adobriyan@gmail.com> | 2008-10-08 05:35:07 -0400 |
---|---|---|
committer | Patrick McHardy <kaber@trash.net> | 2008-10-08 05:35:07 -0400 |
commit | a71996fccce4b2086a26036aa3c915365ca36926 (patch) | |
tree | b029e46dccaa8eceabe44d67ae887630b8acccd2 /include/net | |
parent | 678d66753091a4102910392fb6198a6c6ce7f510 (diff) |
netfilter: netns nf_conntrack: pass conntrack to nf_conntrack_event_cache() not skb
This is cleaner, we already know conntrack to which event is relevant.
Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com>
Signed-off-by: Patrick McHardy <kaber@trash.net>
Diffstat (limited to 'include/net')
-rw-r--r-- | include/net/netfilter/nf_conntrack_ecache.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/include/net/netfilter/nf_conntrack_ecache.h b/include/net/netfilter/nf_conntrack_ecache.h index f0b9078235c9..c1b406cecf9b 100644 --- a/include/net/netfilter/nf_conntrack_ecache.h +++ b/include/net/netfilter/nf_conntrack_ecache.h | |||
@@ -28,10 +28,8 @@ extern void __nf_ct_event_cache_init(struct nf_conn *ct); | |||
28 | extern void nf_ct_event_cache_flush(void); | 28 | extern void nf_ct_event_cache_flush(void); |
29 | 29 | ||
30 | static inline void | 30 | static inline void |
31 | nf_conntrack_event_cache(enum ip_conntrack_events event, | 31 | nf_conntrack_event_cache(enum ip_conntrack_events event, struct nf_conn *ct) |
32 | const struct sk_buff *skb) | ||
33 | { | 32 | { |
34 | struct nf_conn *ct = (struct nf_conn *)skb->nfct; | ||
35 | struct nf_conntrack_ecache *ecache; | 33 | struct nf_conntrack_ecache *ecache; |
36 | 34 | ||
37 | local_bh_disable(); | 35 | local_bh_disable(); |