/linux-6.12.1/arch/x86/kernel/cpu/ |
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-6.12.1/drivers/base/power/ |
D | wakeup.c | 126 deleted_ws.max_time = in wakeup_source_record() 127 ktime_compare(deleted_ws.max_time, ws->max_time) > 0 ? in wakeup_source_record() 128 deleted_ws.max_time : ws->max_time; in wakeup_source_record() 692 if (ktime_to_ns(duration) > ktime_to_ns(ws->max_time)) in wakeup_source_deactivate() 693 ws->max_time = duration; in wakeup_source_deactivate() 1059 ktime_t max_time; in print_wakeup_source_stats() local 1067 max_time = ws->max_time; in print_wakeup_source_stats() 1075 if (active_time > max_time) in print_wakeup_source_stats() 1076 max_time = active_time; in print_wakeup_source_stats() 1089 ktime_to_ms(max_time), ktime_to_ms(ws->last_time), in print_wakeup_source_stats()
|
D | wakeup_stats.c | 70 ktime_t max_time = ws->max_time; in max_time_ms_show() local 74 if (active_time > max_time) in max_time_ms_show() 75 max_time = active_time; in max_time_ms_show() 78 return sysfs_emit(buf, "%lld\n", ktime_to_ms(max_time)); in max_time_ms_show()
|
D | sysfs.c | 481 msec = ktime_to_ms(dev->power.wakeup->max_time); in wakeup_max_time_ms_show()
|
/linux-6.12.1/fs/f2fs/ |
D | gc.h | 146 unsigned int max_time = gc_th->max_sleep_time; in increase_sleep_time() local 151 if ((long long)*wait + (long long)min_time > (long long)max_time) in increase_sleep_time() 152 *wait = max_time; in increase_sleep_time()
|
/linux-6.12.1/tools/perf/scripts/python/ |
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-6.12.1/tools/perf/util/bpf_skel/ |
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()
|
D | lock_data.h | 40 u64 max_time; member
|
D | lock_contention.bpf.c | 483 .max_time = duration, in contention_end() 513 if (data->max_time < duration) in contention_end() 514 data->max_time = duration; in contention_end()
|
/linux-6.12.1/tools/testing/selftests/net/mptcp/ |
D | simult_flows.sh | 129 local max_time=$3 160 ./mptcp_connect -jt ${timeout_poll} -l -p $port -T $max_time \ 168 ./mptcp_connect -jt ${timeout_poll} -p $port -T $max_time \ 188 printf "%-16s" " max $max_time "
|
/linux-6.12.1/drivers/media/usb/dvb-usb/ |
D | dibusb-mc-common.c | 41 .max_time = 0x196, 75 .max_time = 0x51,
|
D | dib0700_devices.c | 74 .max_time = 0x196, 79 .max_time = 0x196,
|
/linux-6.12.1/tools/perf/util/ |
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()
|
D | bpf_lock_contention.c | 235 if (delta > stat_data.max_time) in update_lock_stat() 236 stat_data.max_time = delta; in update_lock_stat() 485 if (st->wait_time_max < data.max_time) in lock_contention_read() 486 st->wait_time_max = data.max_time; in lock_contention_read() 503 st->wait_time_max = data.max_time; in lock_contention_read()
|
/linux-6.12.1/drivers/media/dvb-frontends/ |
D | dib3000mc.h | 25 u16 max_time; member
|
D | dib3000mc.c | 379 dib3000mc_write_word(state, 36, state->cfg->max_time); in dib3000mc_init()
|
/linux-6.12.1/drivers/scsi/snic/ |
D | snic_stats.h | 11 atomic64_t max_time; /* Max time to process IO */ member
|
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()
|
D | snic_debugfs.c | 179 maxio_tm = (u64) atomic64_read(&stats->io.max_time); in snic_stats_show()
|
/linux-6.12.1/include/linux/ |
D | pm_wakeup.h | 52 ktime_t max_time; member
|
/linux-6.12.1/fs/ |
D | fs-writeback.c | 808 unsigned long avg_time, max_bytes, max_time; in wbc_detach_inode() local 838 max_time = DIV_ROUND_UP((max_bytes >> PAGE_SHIFT) << WB_FRN_TIME_SHIFT, in wbc_detach_inode() 841 avg_time += (max_time >> WB_FRN_TIME_AVG_SHIFT) - in wbc_detach_inode() 844 avg_time = max_time; /* immediate catch up on first run */ in wbc_detach_inode() 846 if (max_time >= avg_time / WB_FRN_TIME_CUT_DIV) { in wbc_detach_inode() 857 slots = min(DIV_ROUND_UP(max_time, WB_FRN_HIST_UNIT), in wbc_detach_inode()
|
/linux-6.12.1/Documentation/ABI/testing/ |
D | sysfs-devices-system-cpu | 588 /sys/devices/system/cpu/umwait_control/max_time 603 max_time: Read/write interface to control umwait maximum time
|
/linux-6.12.1/mm/ |
D | slub.c | 6168 long max_time; member 6250 if (age > l->max_time) in add_location() 6251 l->max_time = age; in add_location() 6291 l->max_time = age; in add_location() 7232 l->max_time); in slab_debugfs_show()
|