diff options
Diffstat (limited to 'arch/s390/kernel/vtime.c')
| -rw-r--r-- | arch/s390/kernel/vtime.c | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/s390/kernel/vtime.c b/arch/s390/kernel/vtime.c index 4fc97b40a6e..449ac22cc71 100644 --- a/arch/s390/kernel/vtime.c +++ b/arch/s390/kernel/vtime.c @@ -99,7 +99,7 @@ static int do_account_vtime(struct task_struct *tsk, int hardirq_offset)  	return virt_timer_forward(user + system);  } -void account_vtime(struct task_struct *prev, struct task_struct *next) +void account_switch_vtime(struct task_struct *prev)  {  	struct thread_info *ti; @@ -107,7 +107,7 @@ void account_vtime(struct task_struct *prev, struct task_struct *next)  	ti = task_thread_info(prev);  	ti->user_timer = S390_lowcore.user_timer;  	ti->system_timer = S390_lowcore.system_timer; -	ti = task_thread_info(next); +	ti = task_thread_info(current);  	S390_lowcore.user_timer = ti->user_timer;  	S390_lowcore.system_timer = ti->system_timer;  }  |