Home
last modified time | relevance | path

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

/linux/fs/f2fs/
H A Dgc.h148 unsigned int min_time = gc_th->min_sleep_time; in increase_sleep_time() local
154 if ((long long)*wait + (long long)min_time > (long long)max_time) in increase_sleep_time()
157 *wait += min_time; in increase_sleep_time()
163 unsigned int min_time = gc_th->min_sleep_time; in decrease_sleep_time() local
168 if ((long long)*wait - (long long)min_time < (long long)min_time) in decrease_sleep_time()
169 *wait = min_time; in decrease_sleep_time()
171 *wait -= min_time; in decrease_sleep_time()
/linux/tools/perf/util/bpf_skel/
H A Dsyscall_summary.bpf.c95 if (stats->min_time > duration || stats->min_time == 0) in update_stats()
96 stats->min_time = duration; in update_stats()
H A Dsyscall_summary.h22 u64 min_time; member
H A Dlock_data.h55 u64 min_time;
54 u64 min_time; global() member
H A Dlock_contention.bpf.c534 u64 old_min = ctx->data->min_time; in contention_begin()
539 &ctx->data->min_time, old_min, ctx->duration); in contention_begin()
575 .min_time = duration, in contention_begin()
854 .min_time = duration,
/linux/tools/perf/util/
H A Dbpf-trace-summary.c153 double min = (double)(stat->min_time) / NSEC_PER_MSEC; in print_common_stats()
278 if (stat->min_time > map_data->min_time || stat->min_time == 0) in update_total_stats()
279 stat->min_time = map_data->min_time; in update_total_stats()
H A Dbpf_lock_contention.c487 if (delta < stat_data.min_time)
488 stat_data.min_time = delta;
707 st->wait_time_min = cdata.min_time; in pop_owner_stack_trace()
803 if (st->wait_time_min > data.min_time) in lock_contention_read()
804 st->wait_time_min = data.min_time; in lock_contention_read()
820 st->wait_time_min = data.min_time; in lock_contention_read()
/linux/tools/perf/scripts/python/
H A Dparallel-perf.py549 min_time = time_ranges[0][0]
570 cpu_time_range.time_ranges = [ [min_time, max_time] ]
637 def OpenTimeRangeEnds(time_ranges, min_time, max_time): argument
638 if time_ranges[0][0] <= min_time:
674 def ParseTimeStr(time_str, min_time, max_time): argument
676 return [[min_time, max_time]]
683 start = TimeVal(a[0], min_time)
745 self.min_time = TimeVal(HeaderField(self.hdr_dict, "time of first sample"), 0)
748 self.time_ranges = ParseTimeStr(self.time_str, self.min_time, self.max_time)
792 OpenTimeRangeEnds(time_ranges, self.min_time, self.max_time)
/linux/drivers/ptp/
H A Dptp_netc.c251 u64 alarm, delta, min_time; in netc_timer_set_perout_alarm() local
255 min_time = cur_time + NSEC_PER_MSEC + period; in netc_timer_set_perout_alarm()
256 if (stime < min_time) { in netc_timer_set_perout_alarm()
257 delta = min_time - stime; in netc_timer_set_perout_alarm()
/linux/drivers/input/misc/
H A Duinput.c619 ktime_t min_time; in is_valid_timestamp() local
628 min_time = ktime_sub(current_time, offset); in is_valid_timestamp()
630 if (ktime_after(min_time, timestamp) || ktime_after(timestamp, current_time)) in is_valid_timestamp()
/linux/tools/perf/
H A Dbuiltin-timechart.c75 u64 min_time,
855 * at least min_time long, but don't overlap them */ in process_enter_read()
856 if (sample->end_time - sample->start_time < tchart->min_time) in process_enter_read()
857 sample->end_time = sample->start_time + tchart->min_time; in process_enter_read()
2052 .min_time = NSEC_PER_MSEC,
2080 OPT_CALLBACK(0, "io-min-time", &tchart.min_time, "time",
74 u64 min_time, global() member
/linux/mm/
H A Dslub.c8917 long min_time; member
8998 if (age < l->min_time) in add_location()
8999 l->min_time = age; in add_location()
9040 l->min_time = age; in add_location()
9925 if (l->sum_time != l->min_time) { in slab_debugfs_show()
9927 l->min_time, div_u64(l->sum_time, l->count), in slab_debugfs_show()
9930 seq_printf(seq, " age=%ld", l->min_time); in slab_debugfs_show()
/linux/io_uring/
H A Dio_uring.c2506 ext_arg->min_time = READ_ONCE(w->min_wait_usec) * NSEC_PER_USEC; in io_get_ext_arg()
2535 ext_arg->min_time = arg.min_wait_usec * NSEC_PER_USEC; in io_get_ext_arg()