Searched refs:min_time (Results 1 – 11 of 11) sorted by relevance
| /linux/fs/f2fs/ |
| H A D | gc.h | 148 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 D | syscall_summary.bpf.c | 95 if (stats->min_time > duration || stats->min_time == 0) in update_stats() 96 stats->min_time = duration; in update_stats()
|
| H A D | syscall_summary.h | 22 u64 min_time; member
|
| H A D | lock_data.h | 54 u64 min_time; member
|
| H A D | lock_contention.bpf.c | 497 if (data->min_time > duration) in update_contention_data() 498 data->min_time = duration; in update_contention_data() 514 .min_time = duration, in update_owner_stat() 791 .min_time = duration, in contention_end()
|
| /linux/tools/perf/util/ |
| H A D | bpf-trace-summary.c | 153 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 D | bpf_lock_contention.c | 477 if (delta < stat_data.min_time) in update_lock_stat() 478 stat_data.min_time = delta; in update_lock_stat() 697 st->wait_time_min = cdata.min_time; in pop_owner_stack_trace() 793 if (st->wait_time_min > data.min_time) in lock_contention_read() 794 st->wait_time_min = data.min_time; in lock_contention_read() 810 st->wait_time_min = data.min_time; in lock_contention_read()
|
| /linux/tools/perf/scripts/python/ |
| H A D | parallel-perf.py | 549 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/tools/perf/ |
| H A D | builtin-timechart.c | 74 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() 1934 .min_time = NSEC_PER_MSEC, in cmd_timechart() 1963 OPT_CALLBACK(0, "io-min-time", &tchart.min_time, "time", in cmd_timechart()
|
| /linux/io_uring/ |
| H A D | io_uring.c | 2582 ktime_t min_time; 2663 iowq.min_timeout = ext_arg->min_time; in io_cqring_wait() 3179 ext_arg->min_time = READ_ONCE(w->min_wait_usec) * NSEC_PER_USEC; in io_get_ext_arg() 3208 ext_arg->min_time = arg.min_wait_usec * NSEC_PER_USEC; in io_get_ext_arg() 2581 ktime_t min_time; global() member
|
| /linux/mm/ |
| H A D | slub.c | 8788 long min_time; 8869 if (age < l->min_time) in add_location() 8870 l->min_time = age; in add_location() 8911 l->min_time = age; in add_location() 9897 if (l->sum_time != l->min_time) { in slab_debugfs_show() 9899 l->min_time, div_u64(l->sum_time, l->count), in slab_debugfs_show() 9902 seq_printf(seq, " age=%ld", l->min_time); in slab_debugfs_show() 8786 long min_time; global() member
|