elf.h 376 B

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