Lines Matching defs:thresh
5799 unsigned long thresh = READ_ONCE(wq_watchdog_thresh) * HZ;
5805 if (!thresh)
5840 if (time_after(now, ts + thresh)) {
5855 mod_timer(&wq_watchdog_timer, jiffies + thresh);
5866 static void wq_watchdog_set_thresh(unsigned long thresh)
5871 if (thresh) {
5872 wq_watchdog_thresh = thresh;
5874 mod_timer(&wq_watchdog_timer, jiffies + thresh * HZ);
5881 unsigned long thresh;
5884 ret = kstrtoul(val, 0, &thresh);
5889 wq_watchdog_set_thresh(thresh);
5891 wq_watchdog_thresh = thresh;