aboutsummaryrefslogtreecommitdiffstats
path: root/net/sched/act_tunnel_key.c
diff options
context:
space:
mode:
authorArnd Bergmann <arnd@arndb.de>2019-03-04 21:40:32 +0100
committerDavid S. Miller <davem@davemloft.net>2019-03-04 13:24:25 -0800
commit096461de96a94c856190ba892ebf62dfba5a38f1 (patch)
tree3be7351879531d10c8554dd010d2ee0981712be9 /net/sched/act_tunnel_key.c
parentnet: ignore sysctl_devconf_inherit_init_net without SYSCTL (diff)
downloadlinux-dev-096461de96a94c856190ba892ebf62dfba5a38f1.tar.xz
linux-dev-096461de96a94c856190ba892ebf62dfba5a38f1.zip
net/sched: avoid unused-label warning
The label is only used from inside the #ifdef and should be hidden the same way, to avoid this warning: net/sched/act_tunnel_key.c: In function 'tunnel_key_init': net/sched/act_tunnel_key.c:389:1: error: label 'release_tun_meta' defined but not used [-Werror=unused-label] release_tun_meta: Fixes: 41411e2fd6b8 ("net/sched: act_tunnel_key: Add dst_cache support") Signed-off-by: Arnd Bergmann <arnd@arndb.de> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/sched/act_tunnel_key.c')
-rw-r--r--net/sched/act_tunnel_key.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/sched/act_tunnel_key.c b/net/sched/act_tunnel_key.c
index 2a5f215ae876..3beb4717d3b7 100644
--- a/net/sched/act_tunnel_key.c
+++ b/net/sched/act_tunnel_key.c
@@ -392,8 +392,8 @@ release_dst_cache:
#ifdef CONFIG_DST_CACHE
if (metadata)
dst_cache_destroy(&metadata->u.tun_info.dst_cache);
-#endif
release_tun_meta:
+#endif
if (metadata)
dst_release(&metadata->dst);