Commit 5f6b1ea4 authored by David S. Miller's avatar David S. Miller

Revert "atm: Do not free already unregistered net device."

This reverts commit 65e41136.

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: default avatarDavid S. Miller <davem@davemloft.net>
parent 19443178
...@@ -350,6 +350,7 @@ static void br2684_push(struct atm_vcc *atmvcc, struct sk_buff *skb) ...@@ -350,6 +350,7 @@ static void br2684_push(struct atm_vcc *atmvcc, struct sk_buff *skb)
list_del(&brdev->br2684_devs); list_del(&brdev->br2684_devs);
write_unlock_irq(&devs_lock); write_unlock_irq(&devs_lock);
unregister_netdev(net_dev); unregister_netdev(net_dev);
free_netdev(net_dev);
} }
return; return;
} }
...@@ -770,6 +771,7 @@ static void __exit br2684_exit(void) ...@@ -770,6 +771,7 @@ static void __exit br2684_exit(void)
list_del(&brdev->br2684_devs); list_del(&brdev->br2684_devs);
unregister_netdev(net_dev); unregister_netdev(net_dev);
free_netdev(net_dev);
} }
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment