summaryrefslogtreecommitdiffstats
path: root/zebra/rt.h
diff options
context:
space:
mode:
authorvivek <vivek@cumulusnetworks.com>2018-08-29 02:02:40 +0200
committerDonald Sharp <sharpd@cumulusnetworks.com>2018-09-18 16:41:53 +0200
commitd63c1b18b426fbb2685208dac16ca20767c3219d (patch)
tree660eb0cf36fcc1ed585ed405256530ec0deebb9b /zebra/rt.h
parentMerge pull request #3017 from pacovn/devbuild_Wshadow_flag (diff)
downloadfrr-d63c1b18b426fbb2685208dac16ca20767c3219d.tar.xz
frr-d63c1b18b426fbb2685208dac16ca20767c3219d.zip
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.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/zebra/rt.h b/zebra/rt.h
index e40bae3a3..244b377f8 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);