Commit 5eeb2922 authored by Andi Kleen's avatar Andi Kleen Committed by David S. Miller

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: default avatarAndi Kleen <ak@linux.intel.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 3bca4cf6
...@@ -771,12 +771,12 @@ EXPORT_SYMBOL(gue_build_header); ...@@ -771,12 +771,12 @@ EXPORT_SYMBOL(gue_build_header);
#ifdef CONFIG_NET_FOU_IP_TUNNELS #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, .encap_hlen = fou_encap_hlen,
.build_header = fou_build_header, .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, .encap_hlen = gue_encap_hlen,
.build_header = gue_build_header, .build_header = gue_build_header,
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment