forked from Minki/linux
net: wwan: mhi: fix memory leak in mhi_mbim_dellink
MHI driver registers network device without setting the
needs_free_netdev flag, and does NOT call free_netdev() when
unregisters network device, which causes a memory leak.
This patch sets needs_free_netdev to true when registers
network device, which makes netdev subsystem call free_netdev()
automatically after unregister_netdevice().
Fixes: aa730a9905
("net: wwan: Add MHI MBIM network driver")
Signed-off-by: HW He <hw.he@mediatek.com>
Signed-off-by: Zhaoping Shu <zhaoping.shu@mediatek.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
f25caaca42
commit
668205b9c9
@ -582,6 +582,7 @@ static void mhi_mbim_setup(struct net_device *ndev)
|
||||
ndev->min_mtu = ETH_MIN_MTU;
|
||||
ndev->max_mtu = MHI_MAX_BUF_SZ - ndev->needed_headroom;
|
||||
ndev->tx_queue_len = 1000;
|
||||
ndev->needs_free_netdev = true;
|
||||
}
|
||||
|
||||
static const struct wwan_ops mhi_mbim_wwan_ops = {
|
||||
|
Loading…
Reference in New Issue
Block a user