diff options
author | Ilpo Järvinen <ilpo.jarvinen@helsinki.fi> | 2008-12-15 02:15:49 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-12-15 02:15:49 -0500 |
commit | 8da73b73ef29d537ba09f29393cd68707833e746 (patch) | |
tree | b4281dcf12f6033774b81c05b24296922eeada28 /net/ipv6 | |
parent | 448eb71f40120a8fd11ebd58153c271c63e6f862 (diff) |
ip6mr: use goto to common label instead of opencoding
Signed-off-by: Ilpo Järvinen <ilpo.jarvinen@helsinki.fi>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv6')
-rw-r--r-- | net/ipv6/ip6mr.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/net/ipv6/ip6mr.c b/net/ipv6/ip6mr.c index 9eed2422b3e3..3c51b2d827f4 100644 --- a/net/ipv6/ip6mr.c +++ b/net/ipv6/ip6mr.c | |||
@@ -1501,8 +1501,7 @@ static int ip6mr_forward2(struct sk_buff *skb, struct mfc6_cache *c, int vifi) | |||
1501 | vif->dev->stats.tx_bytes += skb->len; | 1501 | vif->dev->stats.tx_bytes += skb->len; |
1502 | vif->dev->stats.tx_packets++; | 1502 | vif->dev->stats.tx_packets++; |
1503 | ip6mr_cache_report(net, skb, vifi, MRT6MSG_WHOLEPKT); | 1503 | ip6mr_cache_report(net, skb, vifi, MRT6MSG_WHOLEPKT); |
1504 | kfree_skb(skb); | 1504 | goto out_free; |
1505 | return 0; | ||
1506 | } | 1505 | } |
1507 | #endif | 1506 | #endif |
1508 | 1507 | ||