From: Brian Haley Date: Mon, 18 Sep 2006 07:03:41 +0000 (-0700) Subject: [BRIDGE]: Change sysctl tunables to __read_mostly X-Git-Tag: accepted/tizen/common/20141203.182822~35481^2~74 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=9c1ea148ad8bb06538b43908891afedebeaf361b;p=platform%2Fkernel%2Flinux-arm64.git [BRIDGE]: Change sysctl tunables to __read_mostly Change some bridge sysctl tunables to __read_mostly. Signed-off-by: Brian Haley Signed-off-by: David S. Miller --- diff --git a/net/bridge/br_netfilter.c b/net/bridge/br_netfilter.c index cf80dd0..ac181be 100644 --- a/net/bridge/br_netfilter.c +++ b/net/bridge/br_netfilter.c @@ -53,10 +53,10 @@ #ifdef CONFIG_SYSCTL static struct ctl_table_header *brnf_sysctl_header; -static int brnf_call_iptables = 1; -static int brnf_call_ip6tables = 1; -static int brnf_call_arptables = 1; -static int brnf_filter_vlan_tagged = 1; +static int brnf_call_iptables __read_mostly = 1; +static int brnf_call_ip6tables __read_mostly = 1; +static int brnf_call_arptables __read_mostly = 1; +static int brnf_filter_vlan_tagged __read_mostly = 1; #else #define brnf_filter_vlan_tagged 1 #endif