aboutsummaryrefslogtreecommitdiffstats
path: root/net/ipv4/fou.c
diff options
context:
space:
mode:
authorAndi Kleen <ak@linux.intel.com>2015-04-08 06:04:31 -0700
committerDavid S. Miller <davem@davemloft.net>2015-04-08 15:29:08 -0400
commit5eeb2922152042b78eccfb6cf70458019296654f (patch)
tree6db92f810a0411e602e7ad9e63799a31c6eef546 /net/ipv4/fou.c
parentnet: phy: broadcom: Add BCM54616S phy entry (diff)
downloadlinux-dev-5eeb2922152042b78eccfb6cf70458019296654f.tar.xz
linux-dev-5eeb2922152042b78eccfb6cf70458019296654f.zip
fou: Don't use const __read_mostly
const __read_mostly is a senseless combination. If something is already const it cannot be __read_mostly. Remove the bogus __read_mostly in the fou driver. This fixes section conflicts with LTO. Signed-off-by: Andi Kleen <ak@linux.intel.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4/fou.c')
-rw-r--r--net/ipv4/fou.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/net/ipv4/fou.c b/net/ipv4/fou.c
index ff069f6597ac..335e75207284 100644
--- a/net/ipv4/fou.c
+++ b/net/ipv4/fou.c
@@ -771,12 +771,12 @@ EXPORT_SYMBOL(gue_build_header);
#ifdef CONFIG_NET_FOU_IP_TUNNELS
-static const struct ip_tunnel_encap_ops __read_mostly fou_iptun_ops = {
+static const struct ip_tunnel_encap_ops fou_iptun_ops = {
.encap_hlen = fou_encap_hlen,
.build_header = fou_build_header,
};
-static const struct ip_tunnel_encap_ops __read_mostly gue_iptun_ops = {
+static const struct ip_tunnel_encap_ops gue_iptun_ops = {
.encap_hlen = gue_encap_hlen,
.build_header = gue_build_header,
};