summaryrefslogtreecommitdiff
path: root/arch/s390/include/asm/vtime.h
blob: ef4dd7d057a29c37a20f1e5af2e64b9ee3e12dd0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* SPDX-License-Identifier: GPL-2.0 */
#ifndef _S390_VTIME_H
#define _S390_VTIME_H

static inline void update_timer_sys(void)
{
	get_lowcore()->system_timer += get_lowcore()->last_update_timer - get_lowcore()->exit_timer;
	get_lowcore()->user_timer += get_lowcore()->exit_timer - get_lowcore()->sys_enter_timer;
	get_lowcore()->last_update_timer = get_lowcore()->sys_enter_timer;
}

static inline void update_timer_mcck(void)
{
	get_lowcore()->system_timer += get_lowcore()->last_update_timer - get_lowcore()->exit_timer;
	get_lowcore()->user_timer += get_lowcore()->exit_timer - get_lowcore()->mcck_enter_timer;
	get_lowcore()->last_update_timer = get_lowcore()->mcck_enter_timer;
}

#endif /* _S390_VTIME_H */