-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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-mh: changes for programming synced neighs as static in the dataplane #7116
Conversation
kernel header files for neigh sync support Signed-off-by: Anuradha Karuppiah <anuradhak@cumulusnetworks.com>
Changes to setup peer-synced as static in the dataplane. This prevents them from being flushed out when the local switch cannot establish their reachability. Signed-off-by: Anuradha Karuppiah <anuradhak@cumulusnetworks.com>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for your contribution to FRR!
Click for style suggestions
To apply these suggestions:
curl -s https://gist.githubusercontent.com/polychaeta/1fda56116baf52a2a590e5c985e60cc5/raw/7f5a384cabbb39d3ce9df2eded98edcc13a40024/cr_7116_1600302726.diff | git apply
diff --git a/include/linux/neighbour.h b/include/linux/neighbour.h
index c06fe708f..ea22bd9c0 100644
--- a/include/linux/neighbour.h
+++ b/include/linux/neighbour.h
@@ -15,25 +15,23 @@ struct ndmsg {
__u8 ndm_type;
};
-enum {
- NDA_UNSPEC,
- NDA_DST,
- NDA_LLADDR,
- NDA_CACHEINFO,
- NDA_PROBES,
- NDA_VLAN,
- NDA_PORT,
- NDA_VNI,
- NDA_IFINDEX,
- NDA_MASTER,
- NDA_LINK_NETNSID,
- NDA_SRC_VNI,
- NDA_PROTOCOL, /* Originator of entry */
- NDA_NH_ID,
- NDA_NOTIFY,
- NDA_EXT_FLAGS,
- __NDA_MAX
-};
+enum { NDA_UNSPEC,
+ NDA_DST,
+ NDA_LLADDR,
+ NDA_CACHEINFO,
+ NDA_PROBES,
+ NDA_VLAN,
+ NDA_PORT,
+ NDA_VNI,
+ NDA_IFINDEX,
+ NDA_MASTER,
+ NDA_LINK_NETNSID,
+ NDA_SRC_VNI,
+ NDA_PROTOCOL, /* Originator of entry */
+ NDA_NH_ID,
+ NDA_NOTIFY,
+ NDA_EXT_FLAGS,
+ __NDA_MAX };
#define NDA_MAX (__NDA_MAX - 1)
If you are a new contributor to FRR, please see our contributing guidelines.
After making changes, you do not need to create a new PR. You should perform an amend or interactive rebase followed by a force push.
💚 Basic BGPD CI results: SUCCESS, 0 tests failedResults table
For details, please contact louberger |
Continuous Integration Result: SUCCESSFULCongratulations, this patch passed basic tests Tested-by: NetDEF / OpenSourceRouting.org CI System CI System Testrun URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-14220/ This is a comment from an automated CI system. Warnings Generated during build:Debian 10 amd64 build: Successful with additional warningsDebian Package lintian failed for Debian 10 amd64 build:
|
Hosts learnt from an Ethernet Segment peer are setup as static/peer-synced in the dataplane to prevent them from being aged out.
There are two commits in this PR -