diff options
author | David S. Miller <davem@davemloft.net> | 2014-05-12 13:19:14 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2014-05-12 13:19:14 -0400 |
commit | 5f013c9bc70214dcacd5fbed5a06c217d6ff9c59 (patch) | |
tree | 34c3a633000e03bca57d0ce55d8759f86edecc03 /net/ipv6/ip6_fib.c | |
parent | 51ee42efa0829cf9e46f8e1c0ab7a9ab6facf3f2 (diff) | |
parent | 1a466ae96e9f749d02a73315a3e66375e61a61dd (diff) |
Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net
Conflicts:
drivers/net/ethernet/altera/altera_sgdma.c
net/netlink/af_netlink.c
net/sched/cls_api.c
net/sched/sch_api.c
The netlink conflict dealt with moving to netlink_capable() and
netlink_ns_capable() in the 'net' tree vs. supporting 'tc' operations
in non-init namespaces. These were simple transformations from
netlink_capable to netlink_ns_capable.
The Altera driver conflict was simply code removal overlapping some
void pointer cast cleanups in net-next.
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv6/ip6_fib.c')
-rw-r--r-- | net/ipv6/ip6_fib.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/net/ipv6/ip6_fib.c b/net/ipv6/ip6_fib.c index 6fefd44abbf5..cb4459bd1d29 100644 --- a/net/ipv6/ip6_fib.c +++ b/net/ipv6/ip6_fib.c | |||
@@ -1458,7 +1458,7 @@ static int fib6_walk_continue(struct fib6_walker_t *w) | |||
1458 | 1458 | ||
1459 | if (w->skip) { | 1459 | if (w->skip) { |
1460 | w->skip--; | 1460 | w->skip--; |
1461 | continue; | 1461 | goto skip; |
1462 | } | 1462 | } |
1463 | 1463 | ||
1464 | err = w->func(w); | 1464 | err = w->func(w); |
@@ -1468,6 +1468,7 @@ static int fib6_walk_continue(struct fib6_walker_t *w) | |||
1468 | w->count++; | 1468 | w->count++; |
1469 | continue; | 1469 | continue; |
1470 | } | 1470 | } |
1471 | skip: | ||
1471 | w->state = FWS_U; | 1472 | w->state = FWS_U; |
1472 | case FWS_U: | 1473 | case FWS_U: |
1473 | if (fn == w->root) | 1474 | if (fn == w->root) |