/linux/arch/x86/kernel/cpu/ |
H A D | umwait.c | 11 #define UMWAIT_CTRL_VAL(max_time, c02_disable) \ argument 12 (((max_time) & MSR_IA32_UMWAIT_CONTROL_TIME_MASK) | \ 170 u32 max_time, ctrl; in max_time_store() local 173 ret = kstrtou32(buf, 0, &max_time); in max_time_store() 178 if (max_time & ~MSR_IA32_UMWAIT_CONTROL_TIME_MASK) in max_time_store() 184 if (max_time != umwait_ctrl_max_time(ctrl)) in max_time_store() 185 umwait_update_control(max_time, umwait_ctrl_c02_enabled(ctrl)); in max_time_store() 191 static DEVICE_ATTR_RW(max_time);
|
/linux/drivers/base/power/ |
H A D | wakeup_stats.c | 71 ktime_t max_time = ws->max_time; in max_time_ms_show() local 75 if (active_time > max_time) in max_time_ms_show() 76 max_time = active_time; in max_time_ms_show() 79 return sysfs_emit(buf, "%lld\n", ktime_to_ms(max_time)); in max_time_ms_show()
|
H A D | wakeup.c | 125 deleted_ws.max_time = in wakeup_source_record() 126 ktime_compare(deleted_ws.max_time, ws->max_time) > 0 ? in wakeup_source_record() 127 deleted_ws.max_time : ws->max_time; in wakeup_source_record() 688 if (ktime_to_ns(duration) > ktime_to_ns(ws->max_time)) in wakeup_source_deactivate() 689 ws->max_time = duration; in wakeup_source_deactivate() 1055 ktime_t max_time; in print_wakeup_source_stats() local 1063 max_time = ws->max_time; in print_wakeup_source_stats() [all...] |
H A D | sysfs.c | 480 msec = ktime_to_ms(dev->power.wakeup->max_time); in wakeup_max_time_ms_show()
|
/linux/fs/f2fs/ |
H A D | gc.h | 149 unsigned int max_time = gc_th->max_sleep_time; in increase_sleep_time() local 154 if ((long long)*wait + (long long)min_time > (long long)max_time) in increase_sleep_time() 155 *wait = max_time; in increase_sleep_time()
|
/linux/tools/perf/scripts/python/ |
H A D | parallel-perf.py | 413 def CalcTimeRangesByCPU(line, cpu, cpu_time_ranges, max_time): argument 418 cpu_time_range.time_ranges[cpu_time_range.tr_pos][1] = max_time 424 time_ranges.append([time, max_time]) 550 max_time = time_ranges[-1][1] 570 cpu_time_range.time_ranges = [ [min_time, max_time] ] 574 ProcessCommandOutputLines(times_cmd, per_cpu, CalcTimeRangesByCPU, cpu_time_ranges, max_time) 637 def OpenTimeRangeEnds(time_ranges, min_time, max_time): argument 640 if time_ranges[-1][1] >= max_time: 674 def ParseTimeStr(time_str, min_time, max_time): argument 676 return [[min_time, max_time]] [all...] |
/linux/tools/perf/util/bpf_skel/ |
H A D | kwork_trace.bpf.c | 30 __u64 max_time; member 135 if ((delta > data->max_time) || in do_update_time() 136 (data->max_time == 0)) { in do_update_time() 137 data->max_time = delta; in do_update_time()
|
H A D | syscall_summary.bpf.c | 93 if (stats->max_time < duration) in update_stats() 94 stats->max_time = duration; in update_stats()
|
H A D | syscall_summary.h | 21 u64 max_time; member
|
H A D | lock_data.h | 55 u64 max_time; member
|
/linux/tools/perf/util/ |
H A D | bpf-trace-summary.c | 150 double max = (double)(stat->max_time) / NSEC_PER_MSEC; in print_common_stats() 272 if (stat->max_time < map_data->max_time) in update_total_stats() 273 stat->max_time = map_data->max_time; in update_total_stats()
|
H A D | bpf_kwork.c | 39 u64 max_time; member 295 work->max_runtime = data->max_time; in add_work() 301 work->max_latency = data->max_time; in add_work()
|
H A D | bpf_lock_contention.c | 472 if (delta > stat_data.max_time) in update_lock_stat() 473 stat_data.max_time = delta; in update_lock_stat() 693 st->wait_time_max = cdata.max_time; in pop_owner_stack_trace() 791 if (st->wait_time_max < data.max_time) in lock_contention_read() 792 st->wait_time_max = data.max_time; in lock_contention_read() 809 st->wait_time_max = data.max_time; in lock_contention_read()
|
/linux/tools/testing/selftests/net/mptcp/ |
H A D | simult_flows.sh | 129 local max_time=$3 165 ./mptcp_connect -jt ${timeout_poll} -l -p $port -T $max_time \ 173 ./mptcp_connect -jt ${timeout_poll} -p $port -T $max_time \ 200 printf "%-16s" " max $max_time "
|
/linux/drivers/media/usb/dvb-usb/ |
H A D | dibusb-mc-common.c | 41 .max_time = 0x196, 75 .max_time = 0x51,
|
H A D | dib0700_devices.c | 74 .max_time = 0x196, 79 .max_time = 0x196,
|
/linux/drivers/media/dvb-frontends/ |
H A D | dib3000mc.h | 25 u16 max_time; member
|
/linux/tools/testing/selftests/cgroup/ |
H A D | test_kmem.c | 311 int max_time = 20; in test_kmem_dead_cgroups() local 326 for (i = 0; i < max_time; i++) { in test_kmem_dead_cgroups()
|
/linux/drivers/scsi/snic/ |
H A D | snic_stats.h | 11 atomic64_t max_time; /* Max time to process IO */ member
|
H A D | snic_io.c | 553 if (duration > atomic64_read(&snic->s_stats.io.max_time)) in snic_calc_io_process_time() 554 atomic64_set(&snic->s_stats.io.max_time, duration); in snic_calc_io_process_time()
|
H A D | snic_debugfs.c | 179 maxio_tm = (u64) atomic64_read(&stats->io.max_time); in snic_stats_show()
|
/linux/fs/ |
H A D | fs-writeback.c | 825 unsigned long avg_time, max_bytes, max_time; in wbc_detach_inode() local 855 max_time = DIV_ROUND_UP((max_bytes >> PAGE_SHIFT) << WB_FRN_TIME_SHIFT, in wbc_detach_inode() 858 avg_time += (max_time >> WB_FRN_TIME_AVG_SHIFT) - in wbc_detach_inode() 861 avg_time = max_time; /* immediate catch up on first run */ in wbc_detach_inode() 863 if (max_time >= avg_time / WB_FRN_TIME_CUT_DIV) { in wbc_detach_inode() 872 * history from @max_time. in wbc_detach_inode() 874 slots = min(DIV_ROUND_UP(max_time, WB_FRN_HIST_UNIT), in wbc_detach_inode()
|
/linux/mm/ |
H A D | slub.c | 6587 long max_time; member 6669 if (age > l->max_time) in add_location() 6670 l->max_time = age; in add_location() 6710 l->max_time = age; in add_location() 7657 l->max_time); in slab_debugfs_show()
|
/linux/Documentation/ABI/testing/ |
H A D | sysfs-devices-system-cpu | 651 /sys/devices/system/cpu/umwait_control/max_time 666 max_time: Read/write interface to control umwait maximum time
|