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

Evpn refactor #6883

Merged
merged 20 commits into from
Aug 14, 2020
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
578c52e
tests: add EVPN IP learning tests
pjdruddy Apr 17, 2020
2d706c4
tests: remove ifindex from VNI JSON comparison
pjdruddy Jun 2, 2020
87d76d5
zebra: rename vni to evpn where appropriate
pjdruddy Jul 23, 2020
24268cd
zebra: clone zebra_vxlan.c to zebra_evpn_mac.c
pjdruddy Apr 21, 2020
b299808
zebra: extract evpn mac functions from zebra_vxlan.c
pjdruddy Jul 23, 2020
19fdd1b
zebra: split out mac_add code from process_remote_macip_add
pjdruddy Apr 22, 2020
d9d3455
zebra: extract local mac add code from vxlan
pjdruddy Jul 23, 2020
ad6ca5f
zebra: extract local mac del from zebra_vxlan.c
pjdruddy Apr 22, 2020
7bce353
zebra: extract gateway mac add from zebra_vxlan.c
pjdruddy Apr 22, 2020
6336e12
zebra: clone zebra_vxlan.c to zebra_evpn_neigh.c
pjdruddy Apr 23, 2020
7cbae20
zebra: extract neighbor functions from zebra_vxlan.c
pjdruddy Jul 23, 2020
036daac
zebra: extract neigbor processing from remote_macip_add
pjdruddy Apr 24, 2020
224315f
zebra: extract neigbor processing from zevpn_gw_macip_add
pjdruddy Apr 24, 2020
32fe7df
zebra: extract neighbor processing from process_remote_macip_del
pjdruddy Apr 24, 2020
33064a6
zebra: extract neighbor processing from kernel_neigh_del
pjdruddy Apr 24, 2020
6006414
zebra: clone zebra_vxlan.c to zebra_evpn.c
pjdruddy Apr 27, 2020
8b5fdf2
zebra: extract core EVPN functions from zebra_vxlan.c
pjdruddy Aug 10, 2020
1718bc7
zebra: fix SA NULL ptr access warning in evpn_mh
AnuradhaKaruppiah Aug 11, 2020
707b76d
zebra: Revert "zebra: probe local inactive neigh"
chiragshah6 Aug 7, 2020
2bdd446
zebra: clean up SA warning in EVPN code
pjdruddy Aug 12, 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
Prev Previous commit
Next Next commit
zebra: extract core EVPN functions from zebra_vxlan.c
extract the core EVPN functions from zebra_vxlan.c and put them in
a new file zebra_evpn.c.

Signed-off-by: Pat Ruddy <pat@voltanet.io>
  • Loading branch information
pjdruddy committed Aug 12, 2020
commit 8b5fdf2e66611aaee2d8ea3d5694da0fbfeae5c2
2 changes: 2 additions & 0 deletions zebra/subdir.am
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@ zebra_zebra_SOURCES = \
zebra/zebra_errors.c \
zebra/zebra_gr.c \
zebra/zebra_l2.c \
zebra/zebra_evpn.c \
zebra/zebra_evpn_mac.c \
zebra/zebra_evpn_neigh.c \
zebra/zebra_mlag.c \
Expand Down Expand Up @@ -152,6 +153,7 @@ noinst_HEADERS += \
zebra/zebra_evpn.h \
zebra/zebra_evpn_mac.h \
zebra/zebra_evpn_neigh.h \
zebra/zebra_evpn_vxlan.h \
zebra/zebra_fpm_private.h \
zebra/zebra_l2.h \
zebra/zebra_memory.h \
Expand Down
Loading