|
@@ -1113,7 +1113,7 @@ static int s390_system_call_get(struct task_struct *target,
|
|
|
unsigned int pos, unsigned int count,
|
|
|
void *kbuf, void __user *ubuf)
|
|
|
{
|
|
|
- unsigned int *data = &task_thread_info(target)->system_call;
|
|
|
+ unsigned int *data = &target->thread.system_call;
|
|
|
return user_regset_copyout(&pos, &count, &kbuf, &ubuf,
|
|
|
data, 0, sizeof(unsigned int));
|
|
|
}
|
|
@@ -1123,7 +1123,7 @@ static int s390_system_call_set(struct task_struct *target,
|
|
|
unsigned int pos, unsigned int count,
|
|
|
const void *kbuf, const void __user *ubuf)
|
|
|
{
|
|
|
- unsigned int *data = &task_thread_info(target)->system_call;
|
|
|
+ unsigned int *data = &target->thread.system_call;
|
|
|
return user_regset_copyin(&pos, &count, &kbuf, &ubuf,
|
|
|
data, 0, sizeof(unsigned int));
|
|
|
}
|