We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent edfee03 commit 49ee492Copy full SHA for 49ee492
drivers/net/bonding/bond_main.c
@@ -4826,6 +4826,7 @@ static int bond_check_params(struct bond_params *params)
4826
4827
static struct lock_class_key bonding_netdev_xmit_lock_key;
4828
static struct lock_class_key bonding_netdev_addr_lock_key;
4829
+static struct lock_class_key bonding_tx_busylock_key;
4830
4831
static void bond_set_lockdep_class_one(struct net_device *dev,
4832
struct netdev_queue *txq,
@@ -4840,6 +4841,7 @@ static void bond_set_lockdep_class(struct net_device *dev)
4840
4841
lockdep_set_class(&dev->addr_list_lock,
4842
&bonding_netdev_addr_lock_key);
4843
netdev_for_each_tx_queue(dev, bond_set_lockdep_class_one, NULL);
4844
+ dev->qdisc_tx_busylock = &bonding_tx_busylock_key;
4845
}
4846
4847
/*
0 commit comments