Home
last modified time | relevance | path

Searched refs:min_time (Results 1 – 7 of 7) sorted by relevance

/Linux-v6.6/fs/f2fs/
Dgc.h128 unsigned int min_time = gc_th->min_sleep_time; in increase_sleep_time() local
134 if ((long long)*wait + (long long)min_time > (long long)max_time) in increase_sleep_time()
137 *wait += min_time; in increase_sleep_time()
143 unsigned int min_time = gc_th->min_sleep_time; in decrease_sleep_time() local
148 if ((long long)*wait - (long long)min_time < (long long)min_time) in decrease_sleep_time()
149 *wait = min_time; in decrease_sleep_time()
151 *wait -= min_time; in decrease_sleep_time()
/Linux-v6.6/tools/perf/util/bpf_skel/
Dlock_data.h32 u64 min_time; member
Dlock_contention.bpf.c387 .min_time = duration, in contention_end()
412 if (data->min_time > duration) in contention_end()
413 data->min_time = duration; in contention_end()
/Linux-v6.6/tools/perf/util/
Dbpf_lock_contention.c327 if (st->wait_time_min > data.min_time) in lock_contention_read()
328 st->wait_time_min = data.min_time; in lock_contention_read()
344 st->wait_time_min = data.min_time; in lock_contention_read()
/Linux-v6.6/drivers/input/misc/
Duinput.c584 ktime_t min_time; in is_valid_timestamp() local
593 min_time = ktime_sub(current_time, offset); in is_valid_timestamp()
595 if (ktime_after(min_time, timestamp) || ktime_after(timestamp, current_time)) in is_valid_timestamp()
/Linux-v6.6/tools/perf/
Dbuiltin-timechart.c74 u64 min_time, member
805 if (sample->end_time - sample->start_time < tchart->min_time) in pid_end_io_sample()
806 sample->end_time = sample->start_time + tchart->min_time; in pid_end_io_sample()
1935 .min_time = NSEC_PER_MSEC, in cmd_timechart()
1963 OPT_CALLBACK(0, "io-min-time", &tchart.min_time, "time", in cmd_timechart()
/Linux-v6.6/mm/
Dslub.c5236 long min_time; member
5317 if (age < l->min_time) in add_location()
5318 l->min_time = age; in add_location()
5359 l->min_time = age; in add_location()
6300 if (l->sum_time != l->min_time) { in slab_debugfs_show()
6302 l->min_time, div_u64(l->sum_time, l->count), in slab_debugfs_show()
6305 seq_printf(seq, " age=%ld", l->min_time); in slab_debugfs_show()