mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-10-29 23:53:32 +00:00
WAN: Allow hw HDLC drivers to override dev->get_stats.
Use the internal get_stats() by default. Fixes LMC and wanXL drivers. Signed-off-by: Krzysztof Hałasa <khc@pm.waw.pl> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
7cdc15f5f9
commit
dff3fde7be
1 changed files with 1 additions and 11 deletions
|
@ -52,15 +52,6 @@ static int hdlc_change_mtu(struct net_device *dev, int new_mtu)
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
static struct net_device_stats *hdlc_get_stats(struct net_device *dev)
|
|
||||||
{
|
|
||||||
return &dev->stats;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
static int hdlc_rcv(struct sk_buff *skb, struct net_device *dev,
|
static int hdlc_rcv(struct sk_buff *skb, struct net_device *dev,
|
||||||
struct packet_type *p, struct net_device *orig_dev)
|
struct packet_type *p, struct net_device *orig_dev)
|
||||||
{
|
{
|
||||||
|
@ -102,7 +93,7 @@ static int hdlc_device_event(struct notifier_block *this, unsigned long event,
|
||||||
hdlc_device *hdlc;
|
hdlc_device *hdlc;
|
||||||
unsigned long flags;
|
unsigned long flags;
|
||||||
int on;
|
int on;
|
||||||
|
|
||||||
if (dev_net(dev) != &init_net)
|
if (dev_net(dev) != &init_net)
|
||||||
return NOTIFY_DONE;
|
return NOTIFY_DONE;
|
||||||
|
|
||||||
|
@ -233,7 +224,6 @@ static void hdlc_setup_dev(struct net_device *dev)
|
||||||
/* Re-init all variables changed by HDLC protocol drivers,
|
/* Re-init all variables changed by HDLC protocol drivers,
|
||||||
* including ether_setup() called from hdlc_raw_eth.c.
|
* including ether_setup() called from hdlc_raw_eth.c.
|
||||||
*/
|
*/
|
||||||
dev->get_stats = hdlc_get_stats;
|
|
||||||
dev->flags = IFF_POINTOPOINT | IFF_NOARP;
|
dev->flags = IFF_POINTOPOINT | IFF_NOARP;
|
||||||
dev->priv_flags = IFF_WAN_HDLC;
|
dev->priv_flags = IFF_WAN_HDLC;
|
||||||
dev->mtu = HDLC_MAX_MTU;
|
dev->mtu = HDLC_MAX_MTU;
|
||||||
|
|
Loading…
Reference in a new issue