aboutsummaryrefslogtreecommitdiffstats
path: root/include/uapi/linux
diff options
context:
space:
mode:
authorEric W. Biederman <ebiederm@xmission.com>2015-03-03 20:14:31 -0500
committerDavid S. Miller <davem@davemloft.net>2015-03-04 00:26:06 -0500
commit8de147dc8e2adea82b8a1a2a08fcc983330f6770 (patch)
tree2c0562994dc0ee616aabef727064120cf615f356 /include/uapi/linux
parent03c0566542f4c7a45ce3193f27cbf5700b506c18 (diff)
mpls: Multicast route table change notifications
Unlike IPv4 this code notifies on all cases where mpls routes are added or removed and it never automatically removes routes. Avoiding both the userspace confusion that is caused by omitting route updates and the possibility of a flood of netlink traffic when an interface goes doew. For now reserved labels are handled automatically and userspace is not notified. Signed-off-by: "Eric W. Biederman" <ebiederm@xmission.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/uapi/linux')
-rw-r--r--include/uapi/linux/rtnetlink.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/uapi/linux/rtnetlink.h b/include/uapi/linux/rtnetlink.h
index bad65550ae3e..06f75a407f74 100644
--- a/include/uapi/linux/rtnetlink.h
+++ b/include/uapi/linux/rtnetlink.h
@@ -631,6 +631,8 @@ enum rtnetlink_groups {
631#define RTNLGRP_IPV6_NETCONF RTNLGRP_IPV6_NETCONF 631#define RTNLGRP_IPV6_NETCONF RTNLGRP_IPV6_NETCONF
632 RTNLGRP_MDB, 632 RTNLGRP_MDB,
633#define RTNLGRP_MDB RTNLGRP_MDB 633#define RTNLGRP_MDB RTNLGRP_MDB
634 RTNLGRP_MPLS_ROUTE,
635#define RTNLGRP_MPLS_ROUTE RTNLGRP_MPLS_ROUTE
634 __RTNLGRP_MAX 636 __RTNLGRP_MAX
635}; 637};
636#define RTNLGRP_MAX (__RTNLGRP_MAX - 1) 638#define RTNLGRP_MAX (__RTNLGRP_MAX - 1)