Re: [PATCH] fs/proc: report eip/esp in /prod/PID/stat for coredumping

2017-09-15 Thread Ingo Molnar
* Linus Torvalds wrote: > Ingo, I'm assuming I'll get this from the -tip tree, which is where I > got the original commit that this fixes. > > Thanks, >Linus Yeah, will do! Thanks, Ingo

Re: [PATCH] fs/proc: report eip/esp in /prod/PID/stat for coredumping

2017-09-15 Thread Linus Torvalds
Ingo, I'm assuming I'll get this from the -tip tree, which is where I got the original commit that this fixes. Thanks, Linus On Thu, Sep 14, 2017 at 8:37 AM, Thomas Gleixner wrote: > On Thu, 14 Sep 2017, John Ogness wrote: > >> Commit 0a1eb2d474ed ("fs/proc: Stop reporting eip

Re: [PATCH] fs/proc: report eip/esp in /prod/PID/stat for coredumping

2017-09-14 Thread Thomas Gleixner
On Thu, 14 Sep 2017, John Ogness wrote: > Commit 0a1eb2d474ed ("fs/proc: Stop reporting eip and esp in > /proc/PID/stat") stopped reporting eip/esp because it is > racey and dangerous for executing tasks. The comment adds: > > As far as I know, there are no use programs that make any > ma

Re: [PATCH] fs/proc: report eip/esp in /prod/PID/stat for coredumping

2017-09-14 Thread Andy Lutomirski
On Thu, Sep 14, 2017 at 2:42 AM, John Ogness wrote: > Commit 0a1eb2d474ed ("fs/proc: Stop reporting eip and esp in > /proc/PID/stat") stopped reporting eip/esp because it is > racey and dangerous for executing tasks. The comment adds: > > As far as I know, there are no use programs that make a

[PATCH] fs/proc: report eip/esp in /prod/PID/stat for coredumping

2017-09-14 Thread John Ogness
Commit 0a1eb2d474ed ("fs/proc: Stop reporting eip and esp in /proc/PID/stat") stopped reporting eip/esp because it is racey and dangerous for executing tasks. The comment adds: As far as I know, there are no use programs that make any material use of these fields, so just get rid of them.