diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2020-06-13 00:23:31 -0400 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2020-07-27 14:29:23 -0400 |
commit | 7a896028adcfbff4552e6748e8fc8d06036c132c (patch) | |
tree | 32c558902272ae9359aa367db5ecad02e4093551 /include/linux/elfcore.h | |
parent | 16aead81018ca404efe9bd928786824e7168151f (diff) | |
download | linux-7a896028adcfbff4552e6748e8fc8d06036c132c.tar.gz linux-7a896028adcfbff4552e6748e8fc8d06036c132c.tar.bz2 linux-7a896028adcfbff4552e6748e8fc8d06036c132c.zip |
kill elf_fpxregs_t
all uses are conditional upon ELF_CORE_COPY_XFPREGS, which has not
been defined on any architecture since 2010
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'include/linux/elfcore.h')
-rw-r--r-- | include/linux/elfcore.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/include/linux/elfcore.h b/include/linux/elfcore.h index adb8ee89f3fd..46c3d691f677 100644 --- a/include/linux/elfcore.h +++ b/include/linux/elfcore.h @@ -104,13 +104,6 @@ static inline int elf_core_copy_task_fpregs(struct task_struct *t, struct pt_reg #endif } -#ifdef ELF_CORE_COPY_XFPREGS -static inline int elf_core_copy_task_xfpregs(struct task_struct *t, elf_fpxregset_t *xfpu) -{ - return ELF_CORE_COPY_XFPREGS(t, xfpu); -} -#endif - /* * These functions parameterize elf_core_dump in fs/binfmt_elf.c to write out * extra segments containing the gate DSO contents. Dumping its |