diff options
author | Patrick McHardy <kaber@trash.net> | 2007-12-05 04:23:00 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-01-28 17:56:07 -0500 |
commit | 1999414a4ece2b8cea3fb3c4dc8fe06796256269 (patch) | |
tree | 5f2e774691d05f043390ec8a310f411c99aa7a9e /net/bridge | |
parent | 41c5b317036fcb593d14b4dfd12e3318faf3af8a (diff) |
[NETFILTER]: Mark hooks __read_mostly
Signed-off-by: Patrick McHardy <kaber@trash.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/bridge')
-rw-r--r-- | net/bridge/br_netfilter.c | 2 | ||||
-rw-r--r-- | net/bridge/netfilter/ebtable_filter.c | 2 | ||||
-rw-r--r-- | net/bridge/netfilter/ebtable_nat.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/net/bridge/br_netfilter.c b/net/bridge/br_netfilter.c index f9ef3e58b4cb..859fe4d86698 100644 --- a/net/bridge/br_netfilter.c +++ b/net/bridge/br_netfilter.c | |||
@@ -871,7 +871,7 @@ static unsigned int ip_sabotage_in(unsigned int hook, struct sk_buff *skb, | |||
871 | * PF_BRIDGE/NF_BR_LOCAL_OUT functions don't get bridged traffic as input. | 871 | * PF_BRIDGE/NF_BR_LOCAL_OUT functions don't get bridged traffic as input. |
872 | * For br_nf_post_routing, we need (prio = NF_BR_PRI_LAST), because | 872 | * For br_nf_post_routing, we need (prio = NF_BR_PRI_LAST), because |
873 | * ip_refrag() can return NF_STOLEN. */ | 873 | * ip_refrag() can return NF_STOLEN. */ |
874 | static struct nf_hook_ops br_nf_ops[] = { | 874 | static struct nf_hook_ops br_nf_ops[] __read_mostly = { |
875 | { .hook = br_nf_pre_routing, | 875 | { .hook = br_nf_pre_routing, |
876 | .owner = THIS_MODULE, | 876 | .owner = THIS_MODULE, |
877 | .pf = PF_BRIDGE, | 877 | .pf = PF_BRIDGE, |
diff --git a/net/bridge/netfilter/ebtable_filter.c b/net/bridge/netfilter/ebtable_filter.c index 210493f99bc4..fb810908732f 100644 --- a/net/bridge/netfilter/ebtable_filter.c +++ b/net/bridge/netfilter/ebtable_filter.c | |||
@@ -67,7 +67,7 @@ ebt_hook(unsigned int hook, struct sk_buff *skb, const struct net_device *in, | |||
67 | return ebt_do_table(hook, skb, in, out, &frame_filter); | 67 | return ebt_do_table(hook, skb, in, out, &frame_filter); |
68 | } | 68 | } |
69 | 69 | ||
70 | static struct nf_hook_ops ebt_ops_filter[] = { | 70 | static struct nf_hook_ops ebt_ops_filter[] __read_mostly = { |
71 | { | 71 | { |
72 | .hook = ebt_hook, | 72 | .hook = ebt_hook, |
73 | .owner = THIS_MODULE, | 73 | .owner = THIS_MODULE, |
diff --git a/net/bridge/netfilter/ebtable_nat.c b/net/bridge/netfilter/ebtable_nat.c index 3e58c2e5ee21..bc712730c54a 100644 --- a/net/bridge/netfilter/ebtable_nat.c +++ b/net/bridge/netfilter/ebtable_nat.c | |||
@@ -74,7 +74,7 @@ ebt_nat_src(unsigned int hook, struct sk_buff *skb, const struct net_device *in | |||
74 | return ebt_do_table(hook, skb, in, out, &frame_nat); | 74 | return ebt_do_table(hook, skb, in, out, &frame_nat); |
75 | } | 75 | } |
76 | 76 | ||
77 | static struct nf_hook_ops ebt_ops_nat[] = { | 77 | static struct nf_hook_ops ebt_ops_nat[] __read_mostly = { |
78 | { | 78 | { |
79 | .hook = ebt_nat_dst, | 79 | .hook = ebt_nat_dst, |
80 | .owner = THIS_MODULE, | 80 | .owner = THIS_MODULE, |