summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorSri Mohana Singamsetty <srimohans@gmail.com>2020-09-23 00:45:09 +0200
committerGitHub <noreply@github.com>2020-09-23 00:45:09 +0200
commitefdd997dad76b534826701bbc2145abcd1945f83 (patch)
tree067f270482a47cffeec000c384c9b5936edb83f6 /include
parentMerge pull request #7067 from donaldsharp/remove_solaris (diff)
parentzebra: setup static neigh flag in the dataplane (diff)
downloadfrr-efdd997dad76b534826701bbc2145abcd1945f83.tar.xz
frr-efdd997dad76b534826701bbc2145abcd1945f83.zip
Merge pull request #7116 from AnuradhaKaruppiah/mh-neigh-fixes
evpn-mh: changes for programming synced neighs as static in the dataplane
Diffstat (limited to 'include')
-rw-r--r--include/linux/neighbour.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/include/linux/neighbour.h b/include/linux/neighbour.h
index 33c17af1c..c06fe708f 100644
--- a/include/linux/neighbour.h
+++ b/include/linux/neighbour.h
@@ -31,6 +31,7 @@ enum {
NDA_PROTOCOL, /* Originator of entry */
NDA_NH_ID,
NDA_NOTIFY,
+ NDA_EXT_FLAGS,
__NDA_MAX
};
@@ -49,6 +50,10 @@ enum {
#define NTF_STICKY 0x40
#define NTF_ROUTER 0x80
+/* Neighbor Cache Entry extended flags, part of NDA_EXT_FLAGS attribute */
+#define NTF_E_WEAK_OVERRIDE_STATE 0x01
+#define NTF_E_MH_PEER_SYNC 0x02
+
/*
* Neighbor Cache Entry States.
*/