Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

s390/ptrace: Rename psw_t32 to psw32_t

Use a standard "_t" suffix for psw_t32 and rename it to psw32_t.

Reviewed-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Heiko Carstens <hca@linux.ibm.com>

+3 -3
+1 -1
arch/s390/boot/ipl_data.c
··· 12 12 #define PSW_MASK_DISABLED (PSW_MASK_WAIT | PSW_MASK_EA | PSW_MASK_BA) 13 13 14 14 struct ipl_lowcore { 15 - psw_t32 ipl_psw; /* 0x0000 */ 15 + psw32_t ipl_psw; /* 0x0000 */ 16 16 struct ccw0 ccwpgm[2]; /* 0x0008 */ 17 17 u8 fill[56]; /* 0x0018 */ 18 18 struct ccw0 ccwpgmcc[20]; /* 0x0050 */
+1 -1
arch/s390/include/asm/ptrace.h
··· 102 102 typedef struct { 103 103 unsigned int mask; 104 104 unsigned int addr; 105 - } psw_t32 __aligned(8); 105 + } psw32_t __aligned(8); 106 106 107 107 #define PGM_INT_CODE_MASK 0x7f 108 108 #define PGM_INT_CODE_PER 0x80
+1 -1
arch/s390/kernel/compat_linux.h
··· 33 33 } _s390_fp_regs32; 34 34 35 35 typedef struct { 36 - psw_t32 psw; 36 + psw32_t psw; 37 37 __u32 gprs[__NUM_GPRS]; 38 38 __u32 acrs[__NUM_ACRS]; 39 39 } _s390_regs_common32;