Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[FDBSYNCD] Added support for FDBSYNCD for EVPN as described in the PR Azure/SONiC#437 #1276

Merged
merged 27 commits into from
Dec 11, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
1730a6c
[FPMSYNCD] EVPN Type5 prefix handling in FPMSYNCD.
kishorekunal01 Jun 18, 2020
8de4b36
Update fpmsyncd.cpp
kishorekunal01 Sep 21, 2020
cf4ed79
Update fpmlink.cpp
kishorekunal01 Sep 21, 2020
8bc8d5d
Update fpmlink.cpp
kishorekunal01 Sep 21, 2020
2189e1a
Update fpmlink.cpp
kishorekunal01 Sep 21, 2020
46e7c96
Update routesync.cpp
kishorekunal01 Sep 21, 2020
d94dcdc
Update routesync.cpp
kishorekunal01 Sep 21, 2020
a51d079
Update routesync.cpp
kishorekunal01 Sep 24, 2020
23b06ab
Update fpmlink.cpp
kishorekunal01 Oct 5, 2020
9ac6f05
Update routesync.cpp
kishorekunal01 Oct 5, 2020
8d383bb
Update routesync.h
kishorekunal01 Oct 5, 2020
3c29e28
Update routesync.cpp
kishorekunal01 Oct 6, 2020
fb50f03
Fix all the review comment from Prince
kishorekunal01 Oct 8, 2020
9992702
Updated by directly calling the raw message process as per review
kishorekunal01 Oct 16, 2020
95a50d3
Fix space
kishorekunal01 Oct 16, 2020
1cacae7
Updated based on new review comments
kishorekunal01 Oct 16, 2020
b9cdeaa
Merge branch 'master' of https://github.com/Azure/sonic-swss
kishorekunal01 Oct 28, 2020
67187a4
VS test run might be failing due to this.
kishorekunal01 Oct 30, 2020
b7c6a32
Removing un-used code
kishorekunal01 Nov 3, 2020
b90c15e
[FDBSYNCD] Added support for FDBSYNCD as described in the PR
kishorekunal01 Apr 28, 2020
44681f7
Update Makefile.am
kishorekunal01 May 14, 2020
11f717c
Update fdbsync.cpp
kishorekunal01 May 14, 2020
877ec26
Update fdbsync.cpp
kishorekunal01 Jun 9, 2020
3cd4c75
Merge remote-tracking branch 'upstream/master'
kishorekunal01 Nov 19, 2020
0001efe
Merge branch 'master' into evpn_fdbsyncd
kishorekunal01 Nov 19, 2020
fa2be23
All the review comment are address in the changes
kishorekunal01 Nov 19, 2020
1f907b7
Remove variable not used
kishorekunal01 Nov 25, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ gearsyncd/gearsyncd
mclagsyncd/mclagsyncd
natsyncd/natsyncd
neighsyncd/neighsyncd
fdbsyncd/fdbsyncd
orchagent/orchagent
orchagent/orchagent_restart_check
orchagent/routeresync
Expand Down
2 changes: 1 addition & 1 deletion Makefile.am
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
SUBDIRS = fpmsyncd neighsyncd portsyncd mclagsyncd natsyncd orchagent swssconfig cfgmgr tests gearsyncd
SUBDIRS = fpmsyncd neighsyncd fdbsyncd portsyncd mclagsyncd natsyncd orchagent swssconfig cfgmgr tests gearsyncd

if HAVE_LIBTEAM
SUBDIRS += teamsyncd tlm_teamd
Expand Down
1 change: 1 addition & 0 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,7 @@ AC_CONFIG_FILES([
fpmsyncd/Makefile
neighsyncd/Makefile
gearsyncd/Makefile
fdbsyncd/Makefile
natsyncd/Makefile
portsyncd/Makefile
teamsyncd/Makefile
Expand Down
16 changes: 16 additions & 0 deletions fdbsyncd/Makefile.am
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
INCLUDES = -I $(top_srcdir) -I $(top_srcdir)/warmrestart

bin_PROGRAMS = fdbsyncd

if DEBUG
DBGFLAGS = -ggdb -DDEBUG
else
DBGFLAGS = -g
endif

fdbsyncd_SOURCES = fdbsyncd.cpp fdbsync.cpp $(top_srcdir)/warmrestart/warmRestartAssist.cpp

fdbsyncd_CFLAGS = $(DBGFLAGS) $(AM_CFLAGS) $(CFLAGS_COMMON) $(COV_CFLAGS)
fdbsyncd_CPPFLAGS = $(DBGFLAGS) $(AM_CFLAGS) $(CFLAGS_COMMON) $(COV_CFLAGS)
fdbsyncd_LDADD = -lnl-3 -lnl-route-3 -lswsscommon $(COV_LDFLAGS)

Loading