/linux-6.6.21/kernel/sched/ |
D | cputime.c | 652 static u64 vtime_delta(struct vtime *vtime) in vtime_delta() argument 657 if (clock < vtime->starttime) in vtime_delta() 660 return clock - vtime->starttime; in vtime_delta() 663 static u64 get_vtime_delta(struct vtime *vtime) in get_vtime_delta() argument 665 u64 delta = vtime_delta(vtime); in get_vtime_delta() 676 WARN_ON_ONCE(vtime->state == VTIME_INACTIVE); in get_vtime_delta() 677 vtime->starttime += delta; in get_vtime_delta() 683 struct vtime *vtime) in vtime_account_system() argument 685 vtime->stime += get_vtime_delta(vtime); in vtime_account_system() 686 if (vtime->stime >= TICK_NSEC) { in vtime_account_system() [all …]
|
/linux-6.6.21/include/trace/events/ |
D | iocost.h | 17 u64 last_period, u64 cur_period, u64 vtime), 19 TP_ARGS(iocg, path, now, last_period, cur_period, vtime), 29 __field(u64, vtime) 44 __entry->vtime = vtime; 57 __entry->vtime, __entry->inuse, __entry->weight, 64 u64 last_period, u64 cur_period, u64 vtime), 66 TP_ARGS(iocg, path, now, last_period, cur_period, vtime) 71 u64 last_period, u64 cur_period, u64 vtime), 73 TP_ARGS(iocg, path, now, last_period, cur_period, vtime)
|
/linux-6.6.21/block/ |
D | bfq-wf2q.c | 117 !bfq_gt(new_entity->start, st->vtime) in bfq_update_next_in_service() 662 !bfq_gt(last_idle->finish, st->vtime)) { in bfq_forget_idle() 667 st->vtime = last_idle->finish; in bfq_forget_idle() 670 if (first_idle && !bfq_gt(first_idle->finish, st->vtime)) in bfq_forget_idle() 771 entity->start = new_st->vtime; in __bfq_entity_update_weight_prio() 804 st->vtime += bfq_delta(served, st->wsum); in bfq_bfqq_served() 902 if (backshifted && bfq_gt(st->vtime, entity->finish)) { in bfq_update_fin_time_enqueue() 903 unsigned long delta = st->vtime - entity->finish; in bfq_update_fin_time_enqueue() 935 if (non_blocking_wait_rq && bfq_gt(st->vtime, entity->finish)) { in __bfq_activate_entity() 939 min_vstart = st->vtime; in __bfq_activate_entity() [all …]
|
D | blk-iocost.c | 504 atomic64_t vtime; member 723 atomic64_add(cost, &iocg->vtime); in iocg_commit_bio() 1106 iocg->saved_margin = now->vnow - atomic64_read(&iocg->vtime); in __propagate_weights() 1265 u64 vtime, vtarget; in iocg_activate() local 1308 vtime = atomic64_read(&iocg->vtime); in iocg_activate() 1310 atomic64_add(vtarget - vtime, &iocg->vtime); in iocg_activate() 1311 atomic64_add(vtarget - vtime, &iocg->done_vtime); in iocg_activate() 1312 vtime = vtarget; in iocg_activate() 1326 last_period, cur_period, vtime); in iocg_activate() 1372 vover = atomic64_read(&iocg->vtime) + in iocg_kick_delay() [all …]
|
D | bfq-iosched.h | 65 u64 vtime; member
|
/linux-6.6.21/init/ |
D | init_task.c | 172 .vtime.seqcount = SEQCNT_ZERO(init_task.vtime_seqcount), 173 .vtime.starttime = 0, 174 .vtime.state = VTIME_SYS,
|
/linux-6.6.21/arch/ia64/include/asm/ |
D | Kbuild | 6 generic-y += vtime.h
|
/linux-6.6.21/arch/powerpc/include/asm/ |
D | Kbuild | 9 generic-y += vtime.h
|
/linux-6.6.21/tools/cgroup/ |
D | iocost_monitor.py | 157 vtime = iocg.vtime.counter.value_() 161 self.inflight_pct = (vtime - vdone) * 100 / period_vtime
|
/linux-6.6.21/tools/testing/selftests/x86/ |
D | test_vsyscall.c | 65 const time_func_t vtime = (time_func_t)VSYS(0xffffffffff600400); variable 275 t_vsys = vtime(&t2_vsys); in test_time() 535 vtime(&tmp); in test_emulation()
|
/linux-6.6.21/arch/s390/kernel/ |
D | vtime.c | 104 static inline u64 scale_vtime(u64 vtime) in scale_vtime() argument 110 return vtime * mult / div; in scale_vtime() 111 return vtime; in scale_vtime()
|
D | Makefile | 37 obj-y := head64.o traps.o time.o process.o earlypgm.o early.o setup.o idle.o vtime.o
|
/linux-6.6.21/include/linux/ |
D | sched.h | 346 struct vtime { struct 1028 struct vtime vtime; member
|
/linux-6.6.21/kernel/ |
D | fork.c | 2400 seqcount_init(&p->vtime.seqcount); in copy_process() 2401 p->vtime.starttime = 0; in copy_process() 2402 p->vtime.state = VTIME_INACTIVE; in copy_process()
|