diff options
author | Nicolas Dichtel <nicolas.dichtel@6wind.com> | 2013-09-25 12:02:44 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2013-09-30 15:08:12 -0400 |
commit | a528c219df2e865e178c538c7178961dfed5a13c (patch) | |
tree | bea412291c7c60b6651cc16752556aa07f94f4e3 /include/linux/netdevice.h | |
parent | e05849512662e789232dafed71ba65729f101e70 (diff) | |
download | op-kernel-dev-a528c219df2e865e178c538c7178961dfed5a13c.zip op-kernel-dev-a528c219df2e865e178c538c7178961dfed5a13c.tar.gz |
dev: update __dev_notify_flags() to send rtnl msg
This patch only prepares the next one, there is no functional change.
Now, __dev_notify_flags() can also be used to notify flags changes via
rtnetlink.
Signed-off-by: Nicolas Dichtel <nicolas.dichtel@6wind.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/linux/netdevice.h')
-rw-r--r-- | include/linux/netdevice.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/linux/netdevice.h b/include/linux/netdevice.h index b4cfb63..f44f99a 100644 --- a/include/linux/netdevice.h +++ b/include/linux/netdevice.h @@ -2378,7 +2378,9 @@ extern int dev_ethtool(struct net *net, struct ifreq *); extern unsigned int dev_get_flags(const struct net_device *); extern int __dev_change_flags(struct net_device *, unsigned int flags); extern int dev_change_flags(struct net_device *, unsigned int); -extern void __dev_notify_flags(struct net_device *, unsigned int old_flags); +void __dev_notify_flags(struct net_device *, + unsigned int old_flags, + unsigned int gchanges); extern int dev_change_name(struct net_device *, const char *); extern int dev_set_alias(struct net_device *, const char *, size_t); extern int dev_change_net_namespace(struct net_device *, |