Revert "arm64: sigcontext: use standard __uint128_t type for vregs in struct fpsimd_context."

This reverts commit 447dabc1fedbafb1f9894e0c3054bf546a1af913
as it causes this issue with the Android build system:

out/soong/.intermediates/vendor/lineage/build/soong/generated_kernel_includes/ge
n/usr/include/asm/sigcontext.h:53:2: error: unknown type name '__uint128_t'
        __uint128_t vregs[32];
        ^
1 error generated.
This commit is contained in:
TALU 2020-08-21 12:14:23 +01:00 committed by Gabriel2392
parent 0e2c60f465
commit 2a549c0e64

View file

@ -68,13 +68,18 @@ struct _aarch64_ctx {
__u32 size;
};
typedef struct {
__u64 a;
__u64 b;
} ___uint128_t;
#define FPSIMD_MAGIC 0x46508001
struct fpsimd_context {
struct _aarch64_ctx head;
__u32 fpsr;
__u32 fpcr;
__uint128_t vregs[32];
___uint128_t vregs[32];
};
/*