summaryrefslogtreecommitdiffstats
path: root/arch/s390/kernel
diff options
context:
space:
mode:
authorSebastian Ott2019-07-10 13:08:06 +0200
committerVasily Gorbik2019-07-11 20:40:02 +0200
commit9964f396f1d0eed72c50f7ae367119afd355ab9c (patch)
treedf4091195e90e2cbeaf1bb4e3644825e8d207e08 /arch/s390/kernel
parents390/ipl: Fix detection of has_secure attribute (diff)
downloadkernel-qcow2-linux-9964f396f1d0eed72c50f7ae367119afd355ab9c.tar.gz
kernel-qcow2-linux-9964f396f1d0eed72c50f7ae367119afd355ab9c.tar.xz
kernel-qcow2-linux-9964f396f1d0eed72c50f7ae367119afd355ab9c.zip
s390: fix setting of mio addressing control
Move enablement of mio addressing control from detect_machine_facilities to pci_base_init. detect_machine_facilities runs so early that the static branches have not been toggled yet, thus mio addressing control was always off. In pci_base_init we have to use the SMP aware ctl_set_bit though. Fixes: 833b441ec0f6 ("s390: enable processes for mio instructions") Signed-off-by: Sebastian Ott <sebott@linux.ibm.com> Signed-off-by: Vasily Gorbik <gor@linux.ibm.com>
Diffstat (limited to 'arch/s390/kernel')
-rw-r--r--arch/s390/kernel/early.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/arch/s390/kernel/early.c b/arch/s390/kernel/early.c
index 629f173f60cd..6312fed48530 100644
--- a/arch/s390/kernel/early.c
+++ b/arch/s390/kernel/early.c
@@ -30,7 +30,6 @@
#include <asm/sclp.h>
#include <asm/facility.h>
#include <asm/boot_data.h>
-#include <asm/pci_insn.h>
#include "entry.h"
/*
@@ -236,7 +235,6 @@ static __init void detect_machine_facilities(void)
clock_comparator_max = -1ULL >> 1;
__ctl_set_bit(0, 53);
}
- enable_mio_ctl();
}
static inline void save_vector_registers(void)