diff options
Diffstat (limited to 'include/linux/notifier.h')
| -rw-r--r-- | include/linux/notifier.h | 9 | 
1 files changed, 6 insertions, 3 deletions
diff --git a/include/linux/notifier.h b/include/linux/notifier.h index fee6c2f6807..9c5d3fad01f 100644 --- a/include/linux/notifier.h +++ b/include/linux/notifier.h @@ -182,7 +182,10 @@ static inline int notifier_to_errno(int ret)   *	VC switch chains (for loadable kernel svgalib VC switch helpers) etc...   */ -/* netdevice notifier chain */ +/* netdevice notifier chain. Please remember to update the rtnetlink + * notification exclusion list in rtnetlink_event() when adding new + * types. + */  #define NETDEV_UP	0x0001	/* For now you can't veto a device up/down */  #define NETDEV_DOWN	0x0002  #define NETDEV_REBOOT	0x0003	/* Tell a protocol stack a network interface @@ -199,8 +202,8 @@ static inline int notifier_to_errno(int ret)  #define NETDEV_FEAT_CHANGE	0x000B  #define NETDEV_BONDING_FAILOVER 0x000C  #define NETDEV_PRE_UP		0x000D -#define NETDEV_BONDING_OLDTYPE  0x000E -#define NETDEV_BONDING_NEWTYPE  0x000F +#define NETDEV_PRE_TYPE_CHANGE	0x000E +#define NETDEV_POST_TYPE_CHANGE	0x000F  #define NETDEV_POST_INIT	0x0010  #define NETDEV_UNREGISTER_BATCH 0x0011  |