Home
last modified time | relevance | path

Searched refs:max_time (Results 1 – 25 of 29) sorted by relevance

12

/openbmc/linux/arch/x86/kernel/cpu/
H A Dumwait.c11 #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);
/openbmc/linux/drivers/base/power/
H A Dwakeup_stats.c70 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()
H A Dwakeup.c126 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()
689 if (ktime_to_ns(duration) > ktime_to_ns(ws->max_time)) in wakeup_source_deactivate()
690 ws->max_time = duration; in wakeup_source_deactivate()
1056 ktime_t max_time; in print_wakeup_source_stats() local
1064 max_time = ws->max_time; in print_wakeup_source_stats()
1072 if (active_time > max_time) in print_wakeup_source_stats()
1073 max_time = active_time; in print_wakeup_source_stats()
1086 ktime_to_ms(max_time), ktime_to_ms(ws->last_time), in print_wakeup_source_stats()
H A Dsysfs.c481 msec = ktime_to_ms(dev->power.wakeup->max_time); in wakeup_max_time_ms_show()
/openbmc/linux/fs/f2fs/
H A Dgc.h129 unsigned int max_time = gc_th->max_sleep_time; in increase_sleep_time() local
134 if ((long long)*wait + (long long)min_time > (long long)max_time) in increase_sleep_time()
135 *wait = max_time; in increase_sleep_time()
/openbmc/u-boot/arch/x86/cpu/ivybridge/
H A Dmodel_206ax.c166 unsigned tdp, min_power, max_power, max_time; in set_power_limits() local
184 max_time = (msr.hi >> 16) & 0x7f; in set_power_limits()
188 if (power_limit_time_msr_to_sec[max_time] > power_limit_1_time) in set_power_limits()
189 power_limit_1_time = power_limit_time_msr_to_sec[max_time]; in set_power_limits()
/openbmc/qemu/tests/migration/guestperf/
H A Dscenario.py27 max_time=300, argument
43 self._max_time = max_time # seconds
H A Dshell.py150 max_time=args.max_time,
/openbmc/linux/tools/perf/util/bpf_skel/
H A Dkwork_trace.bpf.c30 __u64 max_time; member
134 if ((delta > data->max_time) || in do_update_time()
135 (data->max_time == 0)) { in do_update_time()
136 data->max_time = delta; in do_update_time()
H A Dlock_data.h33 u64 max_time; member
H A Dlock_contention.bpf.c389 .max_time = duration, in contention_end()
413 if (data->max_time < duration) in contention_end()
414 data->max_time = duration; in contention_end()
/openbmc/openbmc/poky/bitbake/bin/
H A Dbitbake-hashclient83 nonlocal max_time
101 max_time = max(elapsed, max_time)
104 max_time = 0
122 print("Max request time was %.8fs" % max_time)
/openbmc/linux/drivers/media/usb/dvb-usb/
H A Ddibusb-mc-common.c40 .max_time = 0x196,
74 .max_time = 0x51,
/openbmc/linux/tools/testing/selftests/net/mptcp/
H A Dsimult_flows.sh147 local max_time=$3
178 ./mptcp_connect -jt ${timeout_poll} -l -p $port -T $max_time \
186 ./mptcp_connect -jt ${timeout_poll} -p $port -T $max_time \
206 printf "%-16s" " max $max_time "
/openbmc/linux/tools/perf/util/
H A Dbpf_kwork.c39 u64 max_time; member
292 work->max_runtime = data->max_time; in add_work()
298 work->max_latency = data->max_time; in add_work()
H A Dbpf_lock_contention.c325 if (st->wait_time_max < data.max_time) in lock_contention_read()
326 st->wait_time_max = data.max_time; in lock_contention_read()
343 st->wait_time_max = data.max_time; in lock_contention_read()
/openbmc/u-boot/arch/x86/cpu/broadwell/
H A Dcpu.c653 unsigned tdp, min_power, max_power, max_time; in cpu_set_power_limits() local
672 max_time = (msr.hi >> 16) & 0x7f; in cpu_set_power_limits()
676 if (power_limit_time_msr_to_sec[max_time] > power_limit_1_time) in cpu_set_power_limits()
677 power_limit_1_time = power_limit_time_msr_to_sec[max_time]; in cpu_set_power_limits()
/openbmc/linux/drivers/media/dvb-frontends/
H A Ddib3000mc.h25 u16 max_time; member
/openbmc/linux/drivers/scsi/snic/
H A Dsnic_stats.h11 atomic64_t max_time; /* Max time to process IO */ member
H A Dsnic_io.c553 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 Dsnic_debugfs.c179 maxio_tm = (u64) atomic64_read(&stats->io.max_time); in snic_stats_show()
/openbmc/linux/include/linux/
H A Dpm_wakeup.h52 ktime_t max_time; member
/openbmc/linux/fs/
H A Dfs-writeback.c784 unsigned long avg_time, max_bytes, max_time; in wbc_detach_inode() local
814 max_time = DIV_ROUND_UP((max_bytes >> PAGE_SHIFT) << WB_FRN_TIME_SHIFT, in wbc_detach_inode()
817 avg_time += (max_time >> WB_FRN_TIME_AVG_SHIFT) - in wbc_detach_inode()
820 avg_time = max_time; /* immediate catch up on first run */ in wbc_detach_inode()
822 if (max_time >= avg_time / WB_FRN_TIME_CUT_DIV) { in wbc_detach_inode()
833 slots = min(DIV_ROUND_UP(max_time, WB_FRN_HIST_UNIT), in wbc_detach_inode()
/openbmc/openbmc/poky/bitbake/lib/hashserv/
H A Dserver.py104 self.max_time = 0
121 if self.max_time < elapsed:
122 self.max_time = elapsed
/openbmc/ipmitool/lib/
H A Dipmi_sunoem.c1337 uint32_t total_time, resp_time, min_time, max_time; in ipmi_sunoem_echo() local
1374 max_time = 0; in ipmi_sunoem_echo()
1433 if (resp_time > max_time) { in ipmi_sunoem_echo()
1434 max_time = resp_time; in ipmi_sunoem_echo()
1447 total_time / received, max_time); in ipmi_sunoem_echo()

12