提交 18d45b11 编写于 作者: R Ravi Bangoria 提交者: Steven Rostedt (VMware)

trace_uprobe: Use %lx to display offset

tu->offset is unsigned long, not a pointer, thus %lx should
be used to print it, not the %px.

Link: http://lkml.kernel.org/r/20180315082756.9050-1-ravi.bangoria@linux.vnet.ibm.com

Cc: stable@vger.kernel.org
Acked-by: NMasami Hiramatsu <mhiramat@kernel.org>
Fixes: 0e4d819d ("trace_uprobe: Display correct offset in uprobe_events")
Suggested-by: NKees Cook <keescook@chromium.org>
Signed-off-by: NRavi Bangoria <ravi.bangoria@linux.vnet.ibm.com>
Signed-off-by: NSteven Rostedt (VMware) <rostedt@goodmis.org>
上级 f0a2aa5a
...@@ -608,7 +608,7 @@ static int probes_seq_show(struct seq_file *m, void *v) ...@@ -608,7 +608,7 @@ static int probes_seq_show(struct seq_file *m, void *v)
/* Don't print "0x (null)" when offset is 0 */ /* Don't print "0x (null)" when offset is 0 */
if (tu->offset) { if (tu->offset) {
seq_printf(m, "0x%px", (void *)tu->offset); seq_printf(m, "0x%0*lx", (int)(sizeof(void *) * 2), tu->offset);
} else { } else {
switch (sizeof(void *)) { switch (sizeof(void *)) {
case 4: case 4:
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册