diff options
| author | vivek <vivek@cumulusnetworks.com> | 2018-08-28 17:02:40 -0700 |
|---|---|---|
| committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2018-09-18 10:41:53 -0400 |
| commit | d63c1b18b426fbb2685208dac16ca20767c3219d (patch) | |
| tree | 660eb0cf36fcc1ed585ed405256530ec0deebb9b /zebra/rt.h | |
| parent | dc790ba83d9ff3b0fa31993bea7682e720f3023b (diff) | |
zebra: Remove unused parameter in MAC delete
When a MAC moves from local to remote, a replace is allowed, EVPN
no longer has to delete the local MAC before installing the remote
MAC.
Signed-off-by: Vivek Venkatraman <vivek@cumulusnetworks.com>
Reviewed-by: Anuradha Karuppiah <anuradhak@cumulusnetworks.com>
Reviewed-by: Chirag Shah <chirag@cumulusnetworks.com>
Diffstat (limited to 'zebra/rt.h')
| -rw-r--r-- | zebra/rt.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/zebra/rt.h b/zebra/rt.h index e40bae3a3e..244b377f86 100644 --- a/zebra/rt.h +++ b/zebra/rt.h @@ -118,8 +118,7 @@ extern int kernel_add_mac(struct interface *ifp, vlanid_t vid, struct ethaddr *mac, struct in_addr vtep_ip, uint8_t sticky); extern int kernel_del_mac(struct interface *ifp, vlanid_t vid, - struct ethaddr *mac, struct in_addr vtep_ip, - int local); + struct ethaddr *mac, struct in_addr vtep_ip); extern int kernel_add_neigh(struct interface *ifp, struct ipaddr *ip, struct ethaddr *mac, uint8_t flags); |
