diff options
author | Jiri Pirko <jiri@resnulli.us> | 2014-11-28 14:34:13 +0100 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2014-12-03 05:01:17 +0100 |
commit | b7485f6b035a87685ce35e0e52deee6467811eb0 (patch) | |
tree | a38ea045f8ee61f1d928930abcb5d19969df0111 /include | |
parent | bridge: rename fdb_*_hw to fdb_*_hw_addr to avoid confusion (diff) | |
download | linux-b7485f6b035a87685ce35e0e52deee6467811eb0.tar.xz linux-b7485f6b035a87685ce35e0e52deee6467811eb0.zip |
neigh: sort Neighbor Cache Entry Flags
Suggested-by: Florian Fainelli <f.fainelli@gmail.com>
Signed-off-by: Jiri Pirko <jiri@resnulli.us>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include')
-rw-r--r-- | include/uapi/linux/neighbour.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/include/uapi/linux/neighbour.h b/include/uapi/linux/neighbour.h index 4a1d7e96dfe3..2f043af7fcd6 100644 --- a/include/uapi/linux/neighbour.h +++ b/include/uapi/linux/neighbour.h @@ -35,11 +35,10 @@ enum { */ #define NTF_USE 0x01 -#define NTF_PROXY 0x08 /* == ATF_PUBL */ -#define NTF_ROUTER 0x80 - #define NTF_SELF 0x02 #define NTF_MASTER 0x04 +#define NTF_PROXY 0x08 /* == ATF_PUBL */ +#define NTF_ROUTER 0x80 /* * Neighbor Cache Entry States. |