Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net
David Ahern's dump indexing bug fix in 'net' overlapped the change of the function signature of inet6_fill_ifaddr() in 'net-next'. Trivially resolved. Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
@@ -1167,8 +1167,7 @@ int neigh_update(struct neighbour *neigh, const u8 *lladdr, u8 new,
|
||||
neigh->nud_state = new;
|
||||
err = 0;
|
||||
notify = old & NUD_VALID;
|
||||
if (((old & (NUD_INCOMPLETE | NUD_PROBE)) ||
|
||||
(flags & NEIGH_UPDATE_F_ADMIN)) &&
|
||||
if ((old & (NUD_INCOMPLETE | NUD_PROBE)) &&
|
||||
(new & NUD_FAILED)) {
|
||||
neigh_invalidate(neigh);
|
||||
notify = 1;
|
||||
|
Reference in New Issue
Block a user