Lines Matching refs:S390_lowcore
52 S390_lowcore.system_timer += S390_lowcore.last_update_timer - timer; in set_vtimer()
53 S390_lowcore.last_update_timer = expires; in set_vtimer()
129 timer = S390_lowcore.last_update_timer; in do_account_vtime()
130 clock = S390_lowcore.last_update_clock; in do_account_vtime()
138 : "=m" (S390_lowcore.last_update_timer), in do_account_vtime()
139 "=m" (S390_lowcore.last_update_clock)); in do_account_vtime()
140 clock = S390_lowcore.last_update_clock - clock; in do_account_vtime()
141 timer -= S390_lowcore.last_update_timer; in do_account_vtime()
144 S390_lowcore.hardirq_timer += timer; in do_account_vtime()
146 S390_lowcore.system_timer += timer; in do_account_vtime()
155 READ_ONCE(S390_lowcore.user_timer)); in do_account_vtime()
157 READ_ONCE(S390_lowcore.guest_timer)); in do_account_vtime()
159 READ_ONCE(S390_lowcore.system_timer)); in do_account_vtime()
161 READ_ONCE(S390_lowcore.hardirq_timer)); in do_account_vtime()
163 READ_ONCE(S390_lowcore.softirq_timer)); in do_account_vtime()
164 S390_lowcore.steal_timer += in do_account_vtime()
185 steal = S390_lowcore.steal_timer; in do_account_vtime()
187 S390_lowcore.steal_timer = 0; in do_account_vtime()
197 prev->thread.user_timer = S390_lowcore.user_timer; in vtime_task_switch()
198 prev->thread.guest_timer = S390_lowcore.guest_timer; in vtime_task_switch()
199 prev->thread.system_timer = S390_lowcore.system_timer; in vtime_task_switch()
200 prev->thread.hardirq_timer = S390_lowcore.hardirq_timer; in vtime_task_switch()
201 prev->thread.softirq_timer = S390_lowcore.softirq_timer; in vtime_task_switch()
202 S390_lowcore.user_timer = current->thread.user_timer; in vtime_task_switch()
203 S390_lowcore.guest_timer = current->thread.guest_timer; in vtime_task_switch()
204 S390_lowcore.system_timer = current->thread.system_timer; in vtime_task_switch()
205 S390_lowcore.hardirq_timer = current->thread.hardirq_timer; in vtime_task_switch()
206 S390_lowcore.softirq_timer = current->thread.softirq_timer; in vtime_task_switch()
228 timer = S390_lowcore.last_update_timer; in vtime_account_irq_enter()
229 S390_lowcore.last_update_timer = get_vtimer(); in vtime_account_irq_enter()
230 timer -= S390_lowcore.last_update_timer; in vtime_account_irq_enter()
233 S390_lowcore.guest_timer += timer; in vtime_account_irq_enter()
235 S390_lowcore.hardirq_timer += timer; in vtime_account_irq_enter()
237 S390_lowcore.softirq_timer += timer; in vtime_account_irq_enter()
239 S390_lowcore.system_timer += timer; in vtime_account_irq_enter()