mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-01-01 18:53:30 +00:00
Revert "atm: Do not free already unregistered net device."
This reverts commit 65e4113684
.
Unlike the other cases Pavel fixed, this case did not
setup a netdev->destructor of free_netdev, therefore this
change was not correct.
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
19443178fb
commit
5f6b1ea41b
@ -350,6 +350,7 @@ static void br2684_push(struct atm_vcc *atmvcc, struct sk_buff *skb)
|
||||
list_del(&brdev->br2684_devs);
|
||||
write_unlock_irq(&devs_lock);
|
||||
unregister_netdev(net_dev);
|
||||
free_netdev(net_dev);
|
||||
}
|
||||
return;
|
||||
}
|
||||
@ -770,6 +771,7 @@ static void __exit br2684_exit(void)
|
||||
|
||||
list_del(&brdev->br2684_devs);
|
||||
unregister_netdev(net_dev);
|
||||
free_netdev(net_dev);
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user