Home
last modified time | relevance | path

Searched refs:utime (Results 1 – 25 of 113) sorted by relevance

12345

/openbmc/linux/kernel/sched/
H A Dcputime.c337 times->utime = sig->utime; in thread_group_cputime()
343 times->utime += utime; in thread_group_cputime()
465 *ut = p->utime; in task_cputime_adjusted()
580 utime = curr->utime; in cputime_adjust()
588 utime = rtime; in cputime_adjust()
617 if (utime < prev->utime) { in cputime_adjust()
618 utime = prev->utime; in cputime_adjust()
623 prev->utime = utime; in cputime_adjust()
858 *utime = t->utime; in task_cputime()
867 *utime = t->utime; in task_cputime()
[all …]
/openbmc/linux/kernel/
H A Dtsacct.c25 u64 utime, stime, utimescaled, stimescaled; in bacct_add_tsk() local
68 task_cputime(tsk, &utime, &stime); in bacct_add_tsk()
69 stats->ac_utime = div_u64(utime, NSEC_PER_USEC); in bacct_add_tsk()
125 u64 utime, u64 stime) in __acct_update_integrals() argument
132 time = stime + utime; in __acct_update_integrals()
154 u64 utime, stime; in acct_update_integrals() local
158 task_cputime(tsk, &utime, &stime); in acct_update_integrals()
159 __acct_update_integrals(tsk, utime, stime); in acct_update_integrals()
169 __acct_update_integrals(tsk, tsk->utime, tsk->stime); in acct_account_cputime()
H A Ddelayacct.c131 u64 utime, stime, stimescaled, utimescaled; in delayacct_add_tsk() local
136 task_cputime(tsk, &utime, &stime); in delayacct_add_tsk()
138 tmp += utime + stime; in delayacct_add_tsk()
H A Dacct.c556 u64 utime, stime; in acct_collect() local
585 task_cputime(current, &utime, &stime); in acct_collect()
586 pacct->ac_utime += utime; in acct_collect()
/openbmc/linux/include/linux/sched/
H A Dcputime.h13 u64 *utime, u64 *stime);
17 u64 *utime, u64 *stime) in task_cputime() argument
19 *utime = t->utime; in task_cputime()
127 atomic64_add(cputime, &cputimer->cputime_atomic.utime); in account_group_user_time()
175 prev->utime = prev->stime = 0; in prev_cputime_init()
H A Dtypes.h19 u64 utime; member
/openbmc/linux/kernel/cgroup/
H A Drstat.c324 dst_bstat->cputime.utime += src_bstat->cputime.utime; in cgroup_base_stat_add()
335 dst_bstat->cputime.utime -= src_bstat->cputime.utime; in cgroup_base_stat_sub()
422 rstatc->bstat.cputime.utime += delta_exec; in __cgroup_account_cputime_field()
463 cputime->utime += user; in root_cgroup_cputime()
483 u64 usage, utime, stime; in cgroup_base_stat_cputime_show() local
493 &utime, &stime); in cgroup_base_stat_cputime_show()
501 utime = bstat.cputime.utime; in cgroup_base_stat_cputime_show()
509 do_div(utime, NSEC_PER_USEC); in cgroup_base_stat_cputime_show()
518 usage, utime, stime); in cgroup_base_stat_cputime_show()
/openbmc/google-misc/subprojects/metrics-ipmi-blobs/
H A Dmetric.cpp86 float utime; member
93 const float negTime = -(utime + stime); in operator <()
94 const float negOtherTime = -(other.utime + other.stime); in operator <()
126 entry.utime = t.utime; in getProcStatMetric()
143 others.utime = others.stime = 0; in getProcStatMetric()
166 others.utime += entry.utime; in getProcStatMetric()
180 .utime = entry.utime, in getProcStatMetric()
190 .utime = others.utime, in getProcStatMetric()
H A Dutil.hpp27 float utime; member
H A DREADME.md11 4. Status of the top 10 processes: cmdline, utime, stime
/openbmc/linux/kernel/futex/
H A Dsyscalls.c165 const struct __kernel_timespec __user *, utime, in SYSCALL_DEFINE6() argument
172 if (utime && futex_cmd_has_timeout(cmd)) { in SYSCALL_DEFINE6()
175 if (get_timespec64(&ts, utime)) in SYSCALL_DEFINE6()
183 return do_futex(uaddr, op, val, tp, uaddr2, (unsigned long)utime, val3); in SYSCALL_DEFINE6()
360 const struct old_timespec32 __user *, utime, u32 __user *, uaddr2, in SYSCALL_DEFINE6() argument
367 if (utime && futex_cmd_has_timeout(cmd)) { in SYSCALL_DEFINE6()
368 if (get_old_timespec32(&ts, utime)) in SYSCALL_DEFINE6()
376 return do_futex(uaddr, op, val, tp, uaddr2, (unsigned long)utime, val3); in SYSCALL_DEFINE6()
/openbmc/linux/arch/powerpc/kernel/
H A Dtime.c176 unsigned long utime, utime_scaled; in vtime_delta_scaled() local
181 utime = acct->utime - acct->utime_sspurr; in vtime_delta_scaled()
182 acct->utime_sspurr = acct->utime; in vtime_delta_scaled()
195 utime_scaled = utime; in vtime_delta_scaled()
196 if (deltascaled != stime + utime) { in vtime_delta_scaled()
197 if (utime) { in vtime_delta_scaled()
198 stime_scaled = deltascaled * stime / (stime + utime); in vtime_delta_scaled()
323 if (acct->utime) in vtime_flush()
324 account_user_time(tsk, cputime_to_nsecs(acct->utime)); in vtime_flush()
350 acct->utime = 0; in vtime_flush()
/openbmc/linux/kernel/time/
H A Dposix-cpu-timers.c196 u64 utime, stime; in cpu_clock_sample() local
201 task_cputime(p, &utime, &stime); in cpu_clock_sample()
205 return utime + stime; in cpu_clock_sample()
207 return utime; in cpu_clock_sample()
216 samples[CPUCLOCK_PROF] = stime + utime; in store_samples()
217 samples[CPUCLOCK_VIRT] = utime; in store_samples()
223 u64 stime, utime; in task_sample_cputime() local
225 task_cputime(p, &utime, &stime); in task_sample_cputime()
232 u64 stime, utime, rtime; in proc_sample_cputime_atomic() local
234 utime = atomic64_read(&at->utime); in proc_sample_cputime_atomic()
[all …]
/openbmc/openbmc/poky/meta/recipes-devtools/unfs3/unfs3/
H A D0001-attr-fix-utime-for-symlink.patch4 Subject: [PATCH] attr: fix utime for symlink
7 symlink file because it only uses utime(), which will follow the
68 #define backend_utime utime
H A D0001-fix-building-on-macOS.patch17 #include <utime.h>
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-devtools/uw-imap/uw-imap/
H A D0001-Define-prototype-for-safe_flock.patch38 +#include <utime.h>
70 +#include <utime.h> /* for struct tm */
89 +#include <utime.h>
/openbmc/linux/arch/powerpc/include/asm/
H A Daccounting.h12 unsigned long utime; member
H A Dcputime.h63 acct->utime += (tb - acct->starttime_user); in account_cpu_user_entry()
/openbmc/google-misc/subprojects/metrics-ipmi-blobs/test/
H A Dutil_test.cpp70 EXPECT_LT(std::abs(t.utime - 3330.37), EPS); in TEST()
86 EXPECT_EQ(t.utime, 0); in TEST()
/openbmc/linux/arch/ia64/kernel/
H A Dtime.c74 if (ti->utime) in vtime_flush()
75 account_user_time(tsk, cycle_to_nsec(ti->utime)); in vtime_flush()
98 ti->utime = 0; in vtime_flush()
/openbmc/qemu/tests/migration/guestperf/
H A Dengine.py63 utime = int(fields[14])
64 records.append(TimingRecord(tid, now, 1000 * (stime + utime) / jiffies_per_sec))
76 utime = int(fields[14])
77 return TimingRecord(pid, now, 1000 * (stime + utime) / jiffies_per_sec)
/openbmc/linux/tools/perf/scripts/python/
H A Dfutex-contention.py30 nr, uaddr, op, val, utime, uaddr2, val3): argument
/openbmc/linux/include/uapi/linux/raid/
H A Dmd_p.h160 __u32 utime; /* 0 Superblock update time */ member
293 __le64 utime; /* 40 bits second, 24 bits microseconds */ member
H A Dmd_u.h95 unsigned int utime; /* 0 Superblock update time */ member
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-devtools/android-tools/android-tools/core/
H A D0001-adb-remove-selinux-extensions.patch44 utime(path, &u);

12345