net: sch_generic: Remove unnecessary watchdog warning

We're never going to debug these ugly warnings.

Signed-off-by: Sultanxda <sultanxda@gmail.com>
Signed-off-by: Pranav Vashi <neobuddy89@gmail.com>
This commit is contained in:
Sultanxda 2018-02-04 02:26:33 -08:00 committed by Adithya R
parent 1ca541a2d4
commit b54c853d29

View File

@ -315,11 +315,8 @@ static void dev_watchdog(unsigned long arg)
}
}
if (some_queue_timedout) {
WARN_ONCE(1, KERN_INFO "NETDEV WATCHDOG: %s (%s): transmit queue %u timed out\n",
dev->name, netdev_drivername(dev), i);
if (some_queue_timedout)
dev->netdev_ops->ndo_tx_timeout(dev);
}
if (!mod_timer(&dev->watchdog_timer,
round_jiffies(jiffies +
dev->watchdog_timeo)))