summaryrefslogtreecommitdiff
path: root/arch/s390/kernel/ptrace.c
diff options
context:
space:
mode:
authorHeiko Carstens <hca@linux.ibm.com>2023-09-11 21:40:01 +0200
committerVasily Gorbik <gor@linux.ibm.com>2023-09-19 13:26:56 +0200
commit80725978260ff823e1c442e75d66cf1b61684bba (patch)
tree122f1afb7fdfdfc73eef30c143001037d13fd407 /arch/s390/kernel/ptrace.c
parent2372d391421350e318c98844d21ab9ad16e3eac0 (diff)
s390/ctlreg: change parameters of __local_ctl_load() and __local_ctl_store()
Change __local_ctl_load() and __local_ctl_store(), so that control register parameters come first. This way all control handling functions consistently have control register(s) parameter first. Reviewed-by: Alexander Gordeev <agordeev@linux.ibm.com> Signed-off-by: Heiko Carstens <hca@linux.ibm.com> Signed-off-by: Vasily Gorbik <gor@linux.ibm.com>
Diffstat (limited to 'arch/s390/kernel/ptrace.c')
-rw-r--r--arch/s390/kernel/ptrace.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/s390/kernel/ptrace.c b/arch/s390/kernel/ptrace.c
index a1fb4536784f..c03fda09f689 100644
--- a/arch/s390/kernel/ptrace.c
+++ b/arch/s390/kernel/ptrace.c
@@ -104,9 +104,9 @@ void update_cr_regs(struct task_struct *task)
return;
}
regs->psw.mask |= PSW_MASK_PER;
- __local_ctl_store(old, 9, 11);
+ __local_ctl_store(9, 11, old);
if (memcmp(&new, &old, sizeof(struct per_regs)) != 0)
- __local_ctl_load(new, 9, 11);
+ __local_ctl_load(9, 11, new);
}
void user_enable_single_step(struct task_struct *task)