Home
last modified time | relevance | path

Searched refs:times (Results 1 – 25 of 534) sorted by relevance

12345678910>>...22

/linux-6.15/fs/
H A Dutimes.c27 if (times) { in vfs_utimes()
29 !nsec_valid(times[1].tv_nsec)) in vfs_utimes()
32 times[1].tv_nsec == UTIME_NOW) in vfs_utimes()
33 times = NULL; in vfs_utimes()
41 if (times) { in vfs_utimes()
45 newattrs.ia_atime = times[0]; in vfs_utimes()
52 newattrs.ia_mtime = times[1]; in vfs_utimes()
176 if (copy_from_user(&times, utimes, sizeof(times))) in do_futimesat()
184 if (times[0].tv_usec >= 1000000 || times[0].tv_usec < 0 || in do_futimesat()
185 times[1].tv_usec >= 1000000 || times[1].tv_usec < 0) in do_futimesat()
[all …]
/linux-6.15/Documentation/scheduler/
H A Dsched-stats.rst63 1) # of times sched_yield() was called
69 3) # of times schedule() was called
70 4) # of times schedule() left the processor idle
74 5) # of times try_to_wake_up() was called
110 8) # of times in this domain pull_task() was called when busy
128 19) # of times in this domain pull_task() was called when the cpu
130 20) # of times in this domain pull_task() was called even though
134 22) # of times in this domain a busier queue was found while the
157 34) # of times active_load_balance() was called
159 36) # of times active_load_balance() successfully moved a task
[all …]
/linux-6.15/fs/hostfs/
H A Dhostfs_user.c208 struct timeval times[2]; in set_attr() local
255 times[0].tv_sec = st.atime.tv_sec; in set_attr()
256 times[0].tv_usec = st.atime.tv_nsec / 1000; in set_attr()
257 times[1].tv_sec = st.mtime.tv_sec; in set_attr()
258 times[1].tv_usec = st.mtime.tv_nsec / 1000; in set_attr()
261 times[0].tv_sec = attrs->ia_atime.tv_sec; in set_attr()
262 times[0].tv_usec = attrs->ia_atime.tv_nsec / 1000; in set_attr()
265 times[1].tv_sec = attrs->ia_mtime.tv_sec; in set_attr()
266 times[1].tv_usec = attrs->ia_mtime.tv_nsec / 1000; in set_attr()
270 if (futimes(fd, times) != 0) in set_attr()
[all …]
/linux-6.15/Documentation/arch/powerpc/
H A Dvcpudispatch_stats.rst17 By default, the DTLB log for each vcpu is processed 50 times a second so
31 2. number of times this vcpu was dispatched on the same processor as last
33 3. number of times this vcpu was dispatched on a different processor core
35 4. number of times this vcpu was dispatched on a different chip
36 5. number of times this vcpu was dispatches on a different socket/drawer
42 6. number of times this vcpu was dispatched in its home node (chip)
43 7. number of times this vcpu was dispatched in a different node
44 8. number of times this vcpu was dispatched in a node further away (numa
/linux-6.15/lib/
H A Dfault-inject.c41 int times; in setup_fault_attr() local
46 &interval, &probability, &space, &times) < 4) { in setup_fault_attr()
56 atomic_set(&attr->times, times); in setup_fault_attr()
71 atomic_read(&attr->times)); in fail_dump()
152 if (atomic_read(&attr->times) == 0) in should_fail_ex()
176 if (atomic_read(&attr->times) != -1) in should_fail_ex()
177 atomic_dec_not_zero(&attr->times); in should_fail_ex()
246 debugfs_create_atomic_t("times", mode, dir, &attr->times); in fault_create_debugfs_attr()
378 FAULT_CONFIGFS_ATTR(times, atomic_t);
/linux-6.15/tools/power/cpupower/bench/
H A DREADME-BENCH34 You can specify load (100% CPU load) and sleep (0% CPU load) times in us which
42 repeated 20 times.
48 Will increase load and sleep time by 25ms 5 times.
50 25ms load/sleep time repeated 20 times (cycles).
51 50ms load/sleep time repeated 20 times (cycles).
53 100ms load/sleep time repeated 20 times (cycles).
79 In round 2, if the ondemand sampling times exactly match the load/sleep
96 You can easily test all kind of load/sleep times and check whether your
/linux-6.15/arch/mips/include/asm/
H A Dunroll.h16 #define unroll(times, fn, ...) do { \ argument
28 BUILD_BUG_ON(!__builtin_constant_p(times)); \
30 switch (times) { \
/linux-6.15/kernel/sched/
H A Dpsi.c267 memcpy(times, groupc->times, sizeof(groupc->times)); in get_recent_times()
287 times[s] += now - state_start; in get_recent_times()
292 times[s] = delta; in get_recent_times()
359 u32 times[NR_PSI_STATES]; in collect_percpu_times() local
371 deltas[s] += (u64)times[s] * nonidle; in collect_percpu_times()
750 groupc->times[PSI_IO_SOME] += delta; in record_times()
752 groupc->times[PSI_IO_FULL] += delta; in record_times()
756 groupc->times[PSI_MEM_SOME] += delta; in record_times()
762 groupc->times[PSI_CPU_SOME] += delta; in record_times()
768 groupc->times[PSI_NONIDLE] += delta; in record_times()
[all …]
H A Dcputime.c310 void thread_group_cputime(struct task_struct *tsk, struct task_cputime *times) in thread_group_cputime() argument
335 times->utime = sig->utime; in thread_group_cputime()
336 times->stime = sig->stime; in thread_group_cputime()
337 times->sum_exec_runtime = sig->sum_sched_runtime; in thread_group_cputime()
341 times->utime += utime; in thread_group_cputime()
342 times->stime += stime; in thread_group_cputime()
343 times->sum_exec_runtime += read_sum_exec_runtime(t); in thread_group_cputime()
/linux-6.15/drivers/iio/
H A Dindustrialio-gts-helper.c430 int *times, i, j, idx = 0, *int_micro_times; in iio_gts_build_avail_time_table() local
435 times = kcalloc(gts->num_itime, sizeof(int), GFP_KERNEL); in iio_gts_build_avail_time_table()
436 if (!times) in iio_gts_build_avail_time_table()
443 if (idx == 0 || times[idx - 1] < new) { in iio_gts_build_avail_time_table()
444 times[idx++] = new; in iio_gts_build_avail_time_table()
449 if (times[j] == new) in iio_gts_build_avail_time_table()
451 if (times[j] > new) { in iio_gts_build_avail_time_table()
452 memmove(&times[j + 1], &times[j], in iio_gts_build_avail_time_table()
454 times[j] = new; in iio_gts_build_avail_time_table()
470 iio_gts_us_to_int_micro(times, int_micro_times, idx); in iio_gts_build_avail_time_table()
[all …]
/linux-6.15/tools/testing/selftests/bpf/benchs/
H A Dbench_bpf_hashmap_lookup.c208 static int compute_events(u64 *times, double *events_mean, double *events_stddev, u64 *mean_time) in compute_events() argument
217 if (!times[i]) in compute_events()
219 *mean_time += times[i]; in compute_events()
220 *events_mean += events_from_time(times[i]); in compute_events()
231 double events_i = *events_mean - events_from_time(times[i]); in compute_events()
/linux-6.15/Documentation/ABI/testing/
H A Dsysfs-devices-platform-ipmi127 idles (RO) Number of times the interface was
140 hosed_count (RO) Number of times the hardware didn't
143 long_timeouts (RO) Number of times the driver
147 flag_fetches (RO) Number of times the driver
156 short_timeouts (RO) Number of times the driver
207 hosed (RO) Number of times the hardware didn't
228 flag_fetches (RO) Number of times a flag fetch was
234 receive_retries (RO) Number of times the receive of a
237 send_errors (RO) Number of times the send of a
H A Dsysfs-class-wakeup18 This file contains the number of times the wakeup source was
32 This file contains the number of times the wakeup source might
39 This file contains the number of times the wakeup source's
H A Dsysfs-firmware-acpi122 times it has triggered::
169 sci The number of times the ACPI SCI
172 sci_not The number of times the ACPI SCI
224 # press the power button for 3 times;
230 # press the power button for 3 times;
241 # press the power button for 3 times;
245 # press the power button for 3 times;
H A Dsysfs-kernel-slab59 The alloc_from_partial file shows how many times a cpu slab has
71 The alloc_refill file shows how many times the per-cpu freelist
82 The alloc_slab file is shows how many times a new slab had to
124 The file cpuslab_flush shows how many times a cache's cpu slabs
147 The deactivate_empty file shows how many times an empty cpu slab
157 The deactivate_full file shows how many times a full cpu slab
178 The deactivate_to_head file shows how many times a partial cpu
189 The deactivate_to_tail file shows how many times a partial cpu
209 The free_add_partial file shows how many times an object has
264 The free_slab file shows how many times an empty slab has been
[all …]
/linux-6.15/Documentation/admin-guide/cgroup-v1/
H A Dcpuacct.rst35 CPU time obtained by the cgroup into user and system times. Currently
44 system times. This has two side effects:
46 - It is theoretically possible to see wrong values for user and system times.
49 - It is possible to see slightly outdated values for user and system times
/linux-6.15/tools/perf/scripts/python/
H A Dstat-cpi.py6 times = [] variable
14 if (time not in times):
15 times.append(time)
/linux-6.15/Documentation/fault-injection/
H A Dnvme-fault-injection.rst22 echo 1 > /sys/kernel/debug/nvme0n1/fault_inject/times
33 name fault_inject, interval 1, probability 100, space 0, times 1
77 echo 1 > /sys/kernel/debug/nvme0n1/fault_inject/times
91 name fault_inject, interval 1, probability 100, space 0, times 1
129 echo 1 > /sys/kernel/debug/nvme0/fault_inject/times
141 name fault_inject, interval 1, probability 100, space 1, times 1
/linux-6.15/Documentation/driver-api/media/drivers/ccs/
H A Dmk-ccs-regs340 my $times = $h->{$arg}->{elsize} != 1 ?
346 $reg_formula .= " + (($arg) < $lim ? ($arg)$times : $offset + (($arg) - $lim)$times)";
348 $reg_formula .= " + ($arg)$times";
351 $lim_formula .= (defined $lim_formula ? " + " : "") . "($arg)$times";
/linux-6.15/drivers/iio/accel/
H A Dkxcjk-1013.c300 const struct kx_odr_start_up_time *times; member
306 .times = pm_ptr(kxcjk1013_odr_start_up_times),
311 .times = pm_ptr(kxcjk1013_odr_start_up_times),
316 .times = pm_ptr(kxcjk1013_odr_start_up_times),
322 .times = pm_ptr(kxcjk1013_odr_start_up_times),
328 .times = pm_ptr(kxcjk1013_odr_start_up_times),
339 .times = pm_ptr(kxtf9_odr_start_up_times),
625 const struct kx_odr_start_up_time *times; in kxcjk1013_get_startup_times() local
627 for (times = data->info->times; times->usec; times++) { in kxcjk1013_get_startup_times()
628 if (times->odr_bits == data->odr_bits) in kxcjk1013_get_startup_times()
[all …]
/linux-6.15/Documentation/networking/device_drivers/ethernet/mellanox/mlx5/
H A Dcounters.rst161 - The number of times the SQ was recovered.
399 - The number of times the RQ was recovered.
426 - The number of times the EQ was recovered.
435 - The number of times an outstanding UMR request is delayed due to
647 - Number of times the TLS async resync request was started.
651 - Number of times the TLS async resync request properly ended with
661 - Number of times the TLS resync response call to the driver was
666 - Number of times the TLS resync response call to the driver was
676 - Number of times when CQE TLS offload was problematic.
733 - Number of times a CQE is expected to not be delivered on the PTP
[all …]
/linux-6.15/include/linux/
H A Dfault-inject.h24 atomic_t times; member
45 .times = ATOMIC_INIT(1), \
/linux-6.15/Documentation/power/
H A Ddrivers-testing.rst13 several times, preferably several times in a row, and separately for hibernation
50 Each of the above tests should be repeated several times and the STD tests
/linux-6.15/Documentation/hwmon/
H A Dina2xx.rst84 programmable conversion times and filtering.
101 programmable calibration value and conversion times. The SY24655 can also
111 bus and shunt voltage conversion times multiplied by the averaging rate. We
112 don't touch the conversion times and only modify the number of averages. The
/linux-6.15/drivers/crypto/intel/qat/qat_common/
H A Dqat_hal.c126 int times = MAX_RETRY_TIMES; in qat_hal_wait_cycles() local
146 if (times < 0) { in qat_hal_wait_cycles()
383 int times = MAX_RETRY_TIMES; in qat_hal_check_ae_alive() local
394 if (times < 0) { in qat_hal_check_ae_alive()
448 int times = 30; in qat_hal_init_esram() local
465 if (times < 0) { in qat_hal_init_esram()
480 unsigned int times = 100; in qat_hal_clr_reset() local
488 if (!(times--)) in qat_hal_clr_reset()
626 int times = MAX_RETRY_TIMES; in qat_hal_clear_gpr() local
658 } while (ret && times--); in qat_hal_clear_gpr()
[all …]

12345678910>>...22