diff options
Diffstat (limited to 'net/ipv6/xfrm6_tunnel.c')
| -rw-r--r-- | net/ipv6/xfrm6_tunnel.c | 8 | 
1 files changed, 3 insertions, 5 deletions
diff --git a/net/ipv6/xfrm6_tunnel.c b/net/ipv6/xfrm6_tunnel.c index 2ce3a8278f2..2969cad408d 100644 --- a/net/ipv6/xfrm6_tunnel.c +++ b/net/ipv6/xfrm6_tunnel.c @@ -199,7 +199,7 @@ static void x6spi_destroy_rcu(struct rcu_head *head)  			container_of(head, struct xfrm6_tunnel_spi, rcu_head));  } -void xfrm6_tunnel_free_spi(struct net *net, xfrm_address_t *saddr) +static void xfrm6_tunnel_free_spi(struct net *net, xfrm_address_t *saddr)  {  	struct xfrm6_tunnel_net *xfrm6_tn = xfrm6_tunnel_pernet(net);  	struct xfrm6_tunnel_spi *x6spi; @@ -223,8 +223,6 @@ void xfrm6_tunnel_free_spi(struct net *net, xfrm_address_t *saddr)  	spin_unlock_bh(&xfrm6_tunnel_spi_lock);  } -EXPORT_SYMBOL(xfrm6_tunnel_free_spi); -  static int xfrm6_tunnel_output(struct xfrm_state *x, struct sk_buff *skb)  {  	skb_push(skb, -skb_network_offset(skb)); @@ -317,13 +315,13 @@ static const struct xfrm_type xfrm6_tunnel_type = {  	.output		= xfrm6_tunnel_output,  }; -static struct xfrm6_tunnel xfrm6_tunnel_handler = { +static struct xfrm6_tunnel xfrm6_tunnel_handler __read_mostly = {  	.handler	= xfrm6_tunnel_rcv,  	.err_handler	= xfrm6_tunnel_err,  	.priority	= 2,  }; -static struct xfrm6_tunnel xfrm46_tunnel_handler = { +static struct xfrm6_tunnel xfrm46_tunnel_handler __read_mostly = {  	.handler	= xfrm6_tunnel_rcv,  	.err_handler	= xfrm6_tunnel_err,  	.priority	= 2,  |