diff options
author | Andrew Lunn <andrew@lunn.ch> | 2015-12-03 21:12:31 +0100 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2015-12-05 23:41:42 +0100 |
commit | 2f8364a291e8adde25c93f97a76abbcaf4b1ed3f (patch) | |
tree | 7b7e3de286880cf4938c00803df3a1ec32d22997 /drivers/net/wan/hdlc_ppp.c | |
parent | WAN: HDLC: Detach protocol before unregistering device (diff) | |
download | linux-2f8364a291e8adde25c93f97a76abbcaf4b1ed3f.tar.xz linux-2f8364a291e8adde25c93f97a76abbcaf4b1ed3f.zip |
WAN: HDLC: Call notifiers before and after changing device type
An HDLC device can change type when the protocol driver is changed.
Calling the notifier change allows potential users of the interface
know about this planned change, and even block it. After the change
has occurred, send a second notification to users can evaluate the new
device type etc.
Signed-off-by: Andrew Lunn <andrew@lunn.ch>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/wan/hdlc_ppp.c')
-rw-r--r-- | drivers/net/wan/hdlc_ppp.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/net/wan/hdlc_ppp.c b/drivers/net/wan/hdlc_ppp.c index 0d7645581f91..47fdb87d3567 100644 --- a/drivers/net/wan/hdlc_ppp.c +++ b/drivers/net/wan/hdlc_ppp.c @@ -687,6 +687,7 @@ static int ppp_ioctl(struct net_device *dev, struct ifreq *ifr) dev->hard_header_len = sizeof(struct hdlc_header); dev->header_ops = &ppp_header_ops; dev->type = ARPHRD_PPP; + call_netdevice_notifiers(NETDEV_POST_TYPE_CHANGE, dev); netif_dormant_on(dev); return 0; } |