aboutsummaryrefslogtreecommitdiffstats
path: root/net/ipv4
diff options
context:
space:
mode:
authorPatrick McHardy <kaber@trash.net>2007-07-08 01:27:06 -0400
committerDavid S. Miller <davem@sunset.davemloft.net>2007-07-11 01:17:38 -0400
commit61eb3107cd8e0302f95aae26206e552365daf290 (patch)
tree611a85cac1cb7540944b7e1779cb4f4ab846cf69 /net/ipv4
parentb6b84d4a94e95727a4c65841eea23ac60c6aa329 (diff)
[NETFILTER]: nf_conntrack_extend: use __read_mostly for struct nf_ct_ext_type
Also make them static. Signed-off-by: Patrick McHardy <kaber@trash.net> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4')
-rw-r--r--net/ipv4/netfilter/nf_nat_core.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv4/netfilter/nf_nat_core.c b/net/ipv4/netfilter/nf_nat_core.c
index 7e31777082de..04691edf50c2 100644
--- a/net/ipv4/netfilter/nf_nat_core.c
+++ b/net/ipv4/netfilter/nf_nat_core.c
@@ -623,7 +623,7 @@ static void nf_nat_move_storage(struct nf_conn *conntrack, void *old)
623 write_unlock_bh(&nf_nat_lock); 623 write_unlock_bh(&nf_nat_lock);
624} 624}
625 625
626struct nf_ct_ext_type nat_extend = { 626static struct nf_ct_ext_type nat_extend __read_mostly = {
627 .len = sizeof(struct nf_conn_nat), 627 .len = sizeof(struct nf_conn_nat),
628 .align = __alignof__(struct nf_conn_nat), 628 .align = __alignof__(struct nf_conn_nat),
629 .destroy = nf_nat_cleanup_conntrack, 629 .destroy = nf_nat_cleanup_conntrack,