mirror of
https://github.com/lkl/linux.git
synced 2025-12-19 16:13:19 +09:00
elf_core_copy_task_regs(): task_pt_regs is defined everywhere
Had been since 2011 for all live architectures, ever since 2013 for all architectures, period. Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
This commit is contained in:
@@ -88,7 +88,7 @@ static inline int elf_core_copy_task_regs(struct task_struct *t, elf_gregset_t*
|
|||||||
{
|
{
|
||||||
#if defined (ELF_CORE_COPY_TASK_REGS)
|
#if defined (ELF_CORE_COPY_TASK_REGS)
|
||||||
return ELF_CORE_COPY_TASK_REGS(t, elfregs);
|
return ELF_CORE_COPY_TASK_REGS(t, elfregs);
|
||||||
#elif defined (task_pt_regs)
|
#else
|
||||||
elf_core_copy_regs(elfregs, task_pt_regs(t));
|
elf_core_copy_regs(elfregs, task_pt_regs(t));
|
||||||
#endif
|
#endif
|
||||||
return 0;
|
return 0;
|
||||||
|
|||||||
Reference in New Issue
Block a user