Re: [PATCH -tip v2 0/2] kprobes/x86: RO text code bugfix and cleanup

2017-08-17 Thread Masami Hiramatsu
On Thu, 17 Aug 2017 11:55:30 +0200 Ingo Molnar wrote: > > * Masami Hiramatsu wrote: > > > Hi, > > > > This series fixes a kprobe-x86 bug related to RO text and > > cleans up addressof operators. > > > > The first one is an obvious bug that misses to set memory > > RO when the function fails.

Re: [PATCH -tip v2 0/2] kprobes/x86: RO text code bugfix and cleanup

2017-08-17 Thread Ingo Molnar
* Masami Hiramatsu wrote: > Hi, > > This series fixes a kprobe-x86 bug related to RO text and > cleans up addressof operators. > > The first one is an obvious bug that misses to set memory > RO when the function fails. And the second one is just a > cleanup patch to remove addressof operators

[PATCH -tip v2 0/2] kprobes/x86: RO text code bugfix and cleanup

2017-08-11 Thread Masami Hiramatsu
Hi, This series fixes a kprobe-x86 bug related to RO text and cleans up addressof operators. The first one is an obvious bug that misses to set memory RO when the function fails. And the second one is just a cleanup patch to remove addressof operators ("&") since it is meaningless anymore. V2 ha