Skip to content

Commit f07f21b

Browse files
Sascha SilbeMartin Schwidefsky
authored andcommitted
s390/sclp: _sclp_wait_int(): retain full PSW mask
There's no reason to clear all PSW mask bits other than the addressing mode bits. Just use the previous PSW mask as-is. Signed-off-by: Sascha Silbe <[email protected]> Acked-by: Heiko Carstens <[email protected]> Signed-off-by: Martin Schwidefsky <[email protected]>
1 parent 121a868 commit f07f21b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

arch/s390/kernel/sclp.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ static void _sclp_wait_int(void)
2121
__ctl_load(cr0_new, 0, 0);
2222

2323
psw_ext_save = S390_lowcore.external_new_psw;
24-
psw_mask = __extract_psw() & (PSW_MASK_EA | PSW_MASK_BA);
24+
psw_mask = __extract_psw();
2525
S390_lowcore.external_new_psw.mask = psw_mask;
2626
psw_wait.mask = psw_mask | PSW_MASK_EXT | PSW_MASK_WAIT;
2727
S390_lowcore.ext_int_code = 0;

0 commit comments

Comments
 (0)