Home
last modified time | relevance | path

Searched refs:thresh (Results 1 – 3 of 3) sorted by relevance

/kernel/trace/
Dtrace_hwlat.c209 u64 thresh = tracing_thresh; in get_sample() local
214 do_div(thresh, NSEC_PER_USEC); /* modifies interval value */ in get_sample()
257 if (diff > thresh || outer_diff > thresh) { in get_sample()
281 if (sample > thresh || outer_sample > thresh) { in get_sample()
/kernel/
Dworkqueue.c5842 unsigned long thresh = READ_ONCE(wq_watchdog_thresh) * HZ; in wq_watchdog_timer_fn() local
5848 if (!thresh) in wq_watchdog_timer_fn()
5878 if (time_after(now, ts + thresh)) { in wq_watchdog_timer_fn()
5894 mod_timer(&wq_watchdog_timer, jiffies + thresh); in wq_watchdog_timer_fn()
5905 static void wq_watchdog_set_thresh(unsigned long thresh) in wq_watchdog_set_thresh() argument
5910 if (thresh) { in wq_watchdog_set_thresh()
5911 wq_watchdog_thresh = thresh; in wq_watchdog_set_thresh()
5913 mod_timer(&wq_watchdog_timer, jiffies + thresh * HZ); in wq_watchdog_set_thresh()
5920 unsigned long thresh; in wq_watchdog_param_set_thresh() local
5923 ret = kstrtoul(val, 0, &thresh); in wq_watchdog_param_set_thresh()
[all …]
/kernel/sched/
Dfair.c4697 unsigned long thresh; in place_entity() local
4700 thresh = sysctl_sched_min_granularity; in place_entity()
4702 thresh = sysctl_sched_latency; in place_entity()
4709 thresh >>= 1; in place_entity()
4711 vruntime -= thresh; in place_entity()