Skip to content

Commit

Permalink
net: sch_generic: Remove unnecessary watchdog warning
Browse files Browse the repository at this point in the history
We're never going to debug these ugly warnings.

Signed-off-by: Sultanxda <[email protected]>
Signed-off-by: engstk <[email protected]>
  • Loading branch information
kerneltoast authored and engstk committed Jun 20, 2020
1 parent c30f60f commit 83dc4ba
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions net/sched/sch_generic.c
Original file line number Diff line number Diff line change
Expand Up @@ -461,11 +461,8 @@ static void dev_watchdog(struct timer_list *t)
}
}

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)))
Expand Down

0 comments on commit 83dc4ba

Please sign in to comment.