]> Git Repo - linux.git/commitdiff
ppp: set qdisc_tx_busylock to avoid LOCKDEP splat
authorEric Dumazet <[email protected]>
Tue, 19 Feb 2013 18:42:03 +0000 (10:42 -0800)
committerDavid S. Miller <[email protected]>
Tue, 19 Feb 2013 19:33:55 +0000 (14:33 -0500)
If a qdisc is installed on a ppp device, its possible to get
a lockdep splat under stress, because nested dev_queue_xmit() can
lock busylock a second time (on a different device, so its a false
positive)

Avoid this problem using a distinct lock_class_key for ppp
devices.

Reported-by: Yanko Kaneti <[email protected]>
Tested-by: Yanko Kaneti <[email protected]>
Signed-off-by: Eric Dumazet <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
drivers/net/ppp/ppp_generic.c

index 4fd754e74eb2b113fc2eae0bb7c6792ae8eb7d73..3db9131e9229800b58e11f0322ee4e79660dd2de 100644 (file)
@@ -1058,7 +1058,15 @@ ppp_get_stats64(struct net_device *dev, struct rtnl_link_stats64 *stats64)
        return stats64;
 }
 
+static struct lock_class_key ppp_tx_busylock;
+static int ppp_dev_init(struct net_device *dev)
+{
+       dev->qdisc_tx_busylock = &ppp_tx_busylock;
+       return 0;
+}
+
 static const struct net_device_ops ppp_netdev_ops = {
+       .ndo_init        = ppp_dev_init,
        .ndo_start_xmit  = ppp_start_xmit,
        .ndo_do_ioctl    = ppp_net_ioctl,
        .ndo_get_stats64 = ppp_get_stats64,
This page took 0.059757 seconds and 4 git commands to generate.