diff options
author | Heiko Carstens <hca@linux.ibm.com> | 2023-09-11 21:40:09 +0200 |
---|---|---|
committer | Vasily Gorbik <gor@linux.ibm.com> | 2023-09-19 13:26:57 +0200 |
commit | 0b6529e3dc1c60565f10ccf40533b127ab3262a1 (patch) | |
tree | c9157c9ac9c302c2f65e739a53b35304c3123daf /arch/s390/kernel | |
parent | 305a5551af34e1848d80e095c23e94c985cc4ebc (diff) | |
download | linux-stable-0b6529e3dc1c60565f10ccf40533b127ab3262a1.tar.gz linux-stable-0b6529e3dc1c60565f10ccf40533b127ab3262a1.tar.bz2 linux-stable-0b6529e3dc1c60565f10ccf40533b127ab3262a1.zip |
s390/setup: make use of system_ctl_load()
Use system_ctl_load() instead of local_ctl_load() to reflect that
control register changes are supposed to be global.
Even though setup_cr() was ok, note that the usage of local_ctl_load()
would have been wrong, if it would have happened after the control
register save area was initialized: only local control register contents
would have been changed, but wouldn't be used for new CPUs.
With using system_ctl_load() the caller doesn't need to take care.
Signed-off-by: Heiko Carstens <hca@linux.ibm.com>
Reviewed-by: Alexander Gordeev <agordeev@linux.ibm.com>
Signed-off-by: Vasily Gorbik <gor@linux.ibm.com>
Diffstat (limited to 'arch/s390/kernel')
-rw-r--r-- | arch/s390/kernel/setup.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/s390/kernel/setup.c b/arch/s390/kernel/setup.c index d399f18d0379..558bcf18df52 100644 --- a/arch/s390/kernel/setup.c +++ b/arch/s390/kernel/setup.c @@ -796,9 +796,9 @@ static void __init setup_cr(void) cr2.ducto = (unsigned long)__ctl_duct >> 6; cr5.pasteo = (unsigned long)__ctl_duct >> 6; cr15.lsea = (unsigned long)__ctl_linkage_stack >> 3; - local_ctl_load(2, &cr2.reg); - local_ctl_load(5, &cr5.reg); - local_ctl_load(15, &cr15.reg); + system_ctl_load(2, &cr2.reg); + system_ctl_load(5, &cr5.reg); + system_ctl_load(15, &cr15.reg); } /* |