| 1 | /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */ |
| 2 | #ifndef _ASM_X86_ELF_H |
| 3 | #define _ASM_X86_ELF_H |
| 4 | |
| 5 | #include <linux/types.h> |
| 6 | |
| 7 | struct x86_xfeat_component { |
| 8 | 	__u32 type; |
| 9 | 	__u32 size; |
| 10 | 	__u32 offset; |
| 11 | 	__u32 flags; |
| 12 | } __attribute__((packed)); |
| 13 | |
| 14 | _Static_assert(sizeof(struct x86_xfeat_component) % 4 == 0, "x86_xfeat_component is not aligned"); |
| 15 | |
| 16 | #endif /* _ASM_X86_ELF_H */ |