Home
last modified time | relevance | path

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

/kernel/trace/
Dtrace_hwlat.c176 u64 thresh = tracing_thresh; in get_sample() local
181 do_div(thresh, NSEC_PER_USEC); /* modifies interval value */ in get_sample()
225 if (diff > thresh || outer_diff > thresh) { in get_sample()
249 if (sample > thresh || outer_sample > thresh) { in get_sample()
/kernel/
Dworkqueue.c5814 unsigned long thresh = READ_ONCE(wq_watchdog_thresh) * HZ; in wq_watchdog_timer_fn() local
5820 if (!thresh) in wq_watchdog_timer_fn()
5855 if (time_after(now, ts + thresh)) { in wq_watchdog_timer_fn()
5871 mod_timer(&wq_watchdog_timer, jiffies + thresh); in wq_watchdog_timer_fn()
5882 static void wq_watchdog_set_thresh(unsigned long thresh) in wq_watchdog_set_thresh() argument
5887 if (thresh) { in wq_watchdog_set_thresh()
5888 wq_watchdog_thresh = thresh; in wq_watchdog_set_thresh()
5890 mod_timer(&wq_watchdog_timer, jiffies + thresh * HZ); in wq_watchdog_set_thresh()
5897 unsigned long thresh; in wq_watchdog_param_set_thresh() local
5900 ret = kstrtoul(val, 0, &thresh); in wq_watchdog_param_set_thresh()
[all …]
/kernel/sched/
Dfair.c4322 unsigned long thresh = sysctl_sched_latency; in place_entity() local
4329 thresh >>= 1; in place_entity()
4331 vruntime -= thresh; in place_entity()