aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/s390
diff options
context:
space:
mode:
authorPhilipp Rudo <prudo@linux.ibm.com>2019-08-29 15:38:37 +0200
committerVasily Gorbik <gor@linux.ibm.com>2019-09-03 13:53:40 +0200
commit4df9a82549cfed5b52da21e7d007b79b2ea1769a (patch)
tree8d70ba651d30f3e496f3adfa70f4b070c62620fa /drivers/s390
parents390/zcrypt: fix wrong handling of cca cipher keygenflags (diff)
downloadlinux-dev-4df9a82549cfed5b52da21e7d007b79b2ea1769a.tar.xz
linux-dev-4df9a82549cfed5b52da21e7d007b79b2ea1769a.zip
s390/sclp: Fix bit checked for has_sipl
Fixes: c9896acc7851 ("s390/ipl: Provide has_secure sysfs attribute") Cc: stable@vger.kernel.org # 5.2+ Reviewed-by: Heiko Carstens <heiko.carstens@de.ibm.com> Signed-off-by: Philipp Rudo <prudo@linux.ibm.com> Signed-off-by: Vasily Gorbik <gor@linux.ibm.com>
Diffstat (limited to 'drivers/s390')
-rw-r--r--drivers/s390/char/sclp_early.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/s390/char/sclp_early.c b/drivers/s390/char/sclp_early.c
index e71992a3c55f..cc5e84b80c69 100644
--- a/drivers/s390/char/sclp_early.c
+++ b/drivers/s390/char/sclp_early.c
@@ -40,7 +40,7 @@ static void __init sclp_early_facilities_detect(struct read_info_sccb *sccb)
sclp.has_gisaf = !!(sccb->fac118 & 0x08);
sclp.has_hvs = !!(sccb->fac119 & 0x80);
sclp.has_kss = !!(sccb->fac98 & 0x01);
- sclp.has_sipl = !!(sccb->cbl & 0x02);
+ sclp.has_sipl = !!(sccb->cbl & 0x4000);
if (sccb->fac85 & 0x02)
S390_lowcore.machine_flags |= MACHINE_FLAG_ESOP;
if (sccb->fac91 & 0x40)