diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2023-06-28 07:12:41 +0300 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2023-06-28 07:12:41 +0300 |
commit | d416a46c954ef0b753595ebfe6bb0988a24c2a57 (patch) | |
tree | 0ebbebc1a70e4e0ef5cece2c9fa9edda558c96b0 /include | |
parent | 98be618ad03010b1173fc3c35f6cbb4447ee2b07 (diff) | |
parent | aa88054b70905069d1cf706aa5e9a3418d1d341d (diff) | |
download | linux-d416a46c954ef0b753595ebfe6bb0988a24c2a57.tar.xz |
Merge tag 'execve-v6.5-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux
Pull execve updates from Kees Cook:
- Fix a few comments for correctness and typos (Baruch Siach)
- Small simplifications for binfmt (Christophe JAILLET)
- Set p_align to 4 for PT_NOTE in core dump (Fangrui Song)
* tag 'execve-v6.5-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux:
binfmt_elf: fix comment typo s/reset/regset/
elf: correct note name comment
binfmt: Slightly simplify elf_fdpic_map_file()
binfmt: Use struct_size()
coredump, vmcore: Set p_align to 4 for PT_NOTE
Diffstat (limited to 'include')
-rw-r--r-- | include/uapi/linux/elf.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/uapi/linux/elf.h b/include/uapi/linux/elf.h index ac3da855fb19..4d1c8d46e7f0 100644 --- a/include/uapi/linux/elf.h +++ b/include/uapi/linux/elf.h @@ -372,7 +372,8 @@ typedef struct elf64_shdr { * Notes used in ET_CORE. Architectures export some of the arch register sets * using the corresponding note types via the PTRACE_GETREGSET and * PTRACE_SETREGSET requests. - * The note name for all these is "LINUX". + * The note name for these types is "LINUX", except NT_PRFPREG that is named + * "CORE". */ #define NT_PRSTATUS 1 #define NT_PRFPREG 2 |