From: Heiko Carstens Date: Sun, 25 Jul 2021 12:12:58 +0000 (+0200) Subject: s390/ctl_reg: add ctlreg5 and ctlreg15 unions X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=97dd89e90136a2fe498c45f2fb079609565949d8;p=linux.git s390/ctl_reg: add ctlreg5 and ctlreg15 unions Signed-off-by: Heiko Carstens --- diff --git a/arch/s390/include/asm/ctl_reg.h b/arch/s390/include/asm/ctl_reg.h index adc0179fa34e9..04dc65f8901dc 100644 --- a/arch/s390/include/asm/ctl_reg.h +++ b/arch/s390/include/asm/ctl_reg.h @@ -111,6 +111,23 @@ union ctlreg2 { }; }; +union ctlreg5 { + unsigned long val; + struct { + unsigned long : 33; + unsigned long pasteo: 25; + unsigned long : 6; + }; +}; + +union ctlreg15 { + unsigned long val; + struct { + unsigned long lsea : 61; + unsigned long : 3; + }; +}; + #define ctl_set_bit(cr, bit) smp_ctl_set_bit(cr, bit) #define ctl_clear_bit(cr, bit) smp_ctl_clear_bit(cr, bit)