Skip to content

Commit

Permalink
tnl-neigh-cache: Force revalidation for a new neighbor entry.
Browse files Browse the repository at this point in the history
When a new ARP or ND entry was added, the code failed to force
revalidation.  This commit fixes the problem.

Reported-by: László Sürü <[email protected]>
Reported-at: https://mail.openvswitch.org/pipermail/ovs-dev/2017-January/327788.html
Tested-by: László Sürü <[email protected]>
Signed-off-by: Ben Pfaff <[email protected]>
  • Loading branch information
blp committed Jan 20, 2017
1 parent fafa41a commit 6fd4b2a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions AUTHORS.rst
Original file line number Diff line number Diff line change
Expand Up @@ -430,6 +430,7 @@ Konstantin Khorenko [email protected]
Kris zhang [email protected]
Krishna Miriyala [email protected]
Krishna Mohan Elluru [email protected]
László Sürü [email protected]
Len Gao [email protected]
Logan Rosen [email protected]
Luca Falavigna [email protected]
Expand Down
2 changes: 1 addition & 1 deletion lib/tnl-neigh-cache.c
Original file line number Diff line number Diff line change
Expand Up @@ -126,8 +126,8 @@ tnl_neigh_set__(const char name[IFNAMSIZ], const struct in6_addr *dst,
return;
}
tnl_neigh_delete(neigh);
seq_change(tnl_conf_seq);
}
seq_change(tnl_conf_seq);

neigh = xmalloc(sizeof *neigh);

Expand Down

0 comments on commit 6fd4b2a

Please sign in to comment.