Searched refs:max_time (Results 1 - 21 of 21) sorted by relevance

/linux-master/arch/x86/kernel/cpu/
H A Dumwait.c11 #define UMWAIT_CTRL_VAL(max_time, c02_disable) \
12 (((max_time) & MSR_IA32_UMWAIT_CONTROL_TIME_MASK) | \
170 u32 max_time, ctrl; local
173 ret = kstrtou32(buf, 0, &max_time);
178 if (max_time & ~MSR_IA32_UMWAIT_CONTROL_TIME_MASK)
184 if (max_time != umwait_ctrl_max_time(ctrl))
185 umwait_update_control(max_time, umwait_ctrl_c02_enabled(ctrl));
191 static DEVICE_ATTR_RW(max_time);
/linux-master/tools/perf/util/bpf_skel/
H A Dlock_data.h40 u64 max_time; member in struct:contention_data
H A Dkwork_trace.bpf.c30 __u64 max_time; member in struct:report_data
134 if ((delta > data->max_time) ||
135 (data->max_time == 0)) {
136 data->max_time = delta;
H A Dlock_contention.bpf.c489 .max_time = duration,
515 if (data->max_time < duration)
516 data->max_time = duration;
/linux-master/fs/f2fs/
H A Dgc.h129 unsigned int max_time = gc_th->max_sleep_time; local
134 if ((long long)*wait + (long long)min_time > (long long)max_time)
135 *wait = max_time;
/linux-master/drivers/base/power/
H A Dwakeup.c126 deleted_ws.max_time =
127 ktime_compare(deleted_ws.max_time, ws->max_time) > 0 ?
128 deleted_ws.max_time : ws->max_time;
689 if (ktime_to_ns(duration) > ktime_to_ns(ws->max_time))
690 ws->max_time = duration;
1056 ktime_t max_time; local
1064 max_time = ws->max_time;
[all...]
H A Dwakeup_stats.c70 ktime_t max_time = ws->max_time; local
74 if (active_time > max_time)
75 max_time = active_time;
78 return sysfs_emit(buf, "%lld\n", ktime_to_ms(max_time));
H A Dsysfs.c481 msec = ktime_to_ms(dev->power.wakeup->max_time);
/linux-master/drivers/media/dvb-frontends/
H A Ddib3000mc.h25 u16 max_time; member in struct:dib3000mc_config
H A Ddib3000mc.c379 dib3000mc_write_word(state, 36, state->cfg->max_time);
/linux-master/drivers/media/usb/dvb-usb/
H A Ddibusb-mc-common.c40 .max_time = 0x196,
74 .max_time = 0x51,
H A Ddib0700_devices.c74 .max_time = 0x196,
79 .max_time = 0x196,
/linux-master/tools/testing/selftests/net/mptcp/
H A Dsimult_flows.sh128 local max_time=$3
159 ./mptcp_connect -jt ${timeout_poll} -l -p $port -T $max_time \
167 ./mptcp_connect -jt ${timeout_poll} -p $port -T $max_time \
187 printf "%-16s" " max $max_time "
/linux-master/tools/perf/util/
H A Dbpf_kwork.c39 u64 max_time; member in struct:report_data
292 work->max_runtime = data->max_time;
298 work->max_latency = data->max_time;
H A Dbpf_lock_contention.c232 if (delta > stat_data.max_time)
233 stat_data.max_time = delta;
479 if (st->wait_time_max < data.max_time)
480 st->wait_time_max = data.max_time;
497 st->wait_time_max = data.max_time;
/linux-master/drivers/scsi/snic/
H A Dsnic_stats.h11 atomic64_t max_time; /* Max time to process IO */ member in struct:snic_io_stats
H A Dsnic_io.c553 if (duration > atomic64_read(&snic->s_stats.io.max_time))
554 atomic64_set(&snic->s_stats.io.max_time, duration);
H A Dsnic_debugfs.c179 maxio_tm = (u64) atomic64_read(&stats->io.max_time);
/linux-master/include/linux/
H A Dpm_wakeup.h31 * @max_time: Maximum time this wakeup source has been continuously active.
52 ktime_t max_time; member in struct:wakeup_source
/linux-master/fs/
H A Dfs-writeback.c809 unsigned long avg_time, max_bytes, max_time; local
839 max_time = DIV_ROUND_UP((max_bytes >> PAGE_SHIFT) << WB_FRN_TIME_SHIFT,
842 avg_time += (max_time >> WB_FRN_TIME_AVG_SHIFT) -
845 avg_time = max_time; /* immediate catch up on first run */
847 if (max_time >= avg_time / WB_FRN_TIME_CUT_DIV) {
856 * history from @max_time.
858 slots = min(DIV_ROUND_UP(max_time, WB_FRN_HIST_UNIT),
/linux-master/mm/
H A Dslub.c5824 long max_time; member in struct:location
5906 if (age > l->max_time)
5907 l->max_time = age;
5947 l->max_time = age;
6888 l->max_time);

Completed in 478 milliseconds