Skip to content

Commit 55d169c

Browse files
committed
s390/vx: remove __uint128_t type from __vector128 struct again
The __uint128_t member was only added for future convenience to the __vector128 struct. However this is a uapi header file, 31/32 bit (aka compat layer) is still supported, but doesn't know anything about this type: /usr/include/asm/types.h:27:17: error: unknown type name __uint128_t 27 | __uint128_t v; Therefore remove it again. Fixes: b0b7b43 ("s390/vx: add 64 and 128 bit members to __vector128 struct") Signed-off-by: Heiko Carstens <[email protected]>
1 parent 0807b85 commit 55d169c

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

arch/s390/include/uapi/asm/types.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ typedef struct {
2424
__u64 high;
2525
__u64 low;
2626
};
27-
__uint128_t v;
2827
__u32 u[4];
2928
};
3029
} __attribute__((packed, aligned(4))) __vector128;

0 commit comments

Comments
 (0)