Commit 244ef9b9 authored by Wang Chen's avatar Wang Chen Committed by David S. Miller

bond: Kill directly reference of netdev->priv

Simply replace netdev->priv with netdev_priv().
Signed-off-by: default avatarWang Chen <wangchen@cn.fujitsu.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 97341249
...@@ -1992,7 +1992,7 @@ void bond_destroy(struct bonding *bond) ...@@ -1992,7 +1992,7 @@ void bond_destroy(struct bonding *bond)
static void bond_destructor(struct net_device *bond_dev) static void bond_destructor(struct net_device *bond_dev)
{ {
struct bonding *bond = bond_dev->priv; struct bonding *bond = netdev_priv(bond_dev);
if (bond->wq) if (bond->wq)
destroy_workqueue(bond->wq); destroy_workqueue(bond->wq);
......
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