diff options
author | David Ahern <dsa@cumulusnetworks.com> | 2017-03-28 14:28:02 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2017-03-28 22:32:42 -0700 |
commit | 3b0228656dcb07a1c9fc81e8516475c2d7c4300e (patch) | |
tree | a00a651b490489bd8c763411de2ff06a656971b5 /include/linux/inetdevice.h | |
parent | 983701eb0676db96c604db8a3f7ae936a7029ff5 (diff) | |
download | linux-stable-3b0228656dcb07a1c9fc81e8516475c2d7c4300e.tar.gz linux-stable-3b0228656dcb07a1c9fc81e8516475c2d7c4300e.tar.bz2 linux-stable-3b0228656dcb07a1c9fc81e8516475c2d7c4300e.zip |
net: devinet: Refactor inet_netconf_notify_devconf to take event
Refactor inet_netconf_notify_devconf to take the event as an input arg.
Signed-off-by: David Ahern <dsa@cumulusnetworks.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/linux/inetdevice.h')
-rw-r--r-- | include/linux/inetdevice.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/inetdevice.h b/include/linux/inetdevice.h index ee971f335a8b..a2e9d6ea1349 100644 --- a/include/linux/inetdevice.h +++ b/include/linux/inetdevice.h @@ -153,8 +153,8 @@ struct in_ifaddr { int register_inetaddr_notifier(struct notifier_block *nb); int unregister_inetaddr_notifier(struct notifier_block *nb); -void inet_netconf_notify_devconf(struct net *net, int type, int ifindex, - struct ipv4_devconf *devconf); +void inet_netconf_notify_devconf(struct net *net, int event, int type, + int ifindex, struct ipv4_devconf *devconf); struct net_device *__ip_dev_find(struct net *net, __be32 addr, bool devref); static inline struct net_device *ip_dev_find(struct net *net, __be32 addr) |