Re: [PATCH] fix compilation error of perf/core

2012-09-25 Thread Namhyung Kim
Hi Dong, On Tue, 25 Sep 2012 16:21:25 +0800, Dong Hao wrote: From: Dong Hao haod...@linux.vnet.ibm.com The newest branch of perf/core should have compilation error! Error log includes: builtin-test.c: In function ‘perf_evsel__test_field’: builtin-test.c:1216:6: error: variable ‘ret’ set

Re: [PATCH 2/4] KVM: Use __print_hex() for kvm_emulate_insn tracepoint

2012-06-27 Thread Namhyung Kim
[CC'ing David] Hi, Steve On Wed, 27 Jun 2012 09:20:24 -0400, Steven Rostedt wrote: On Wed, 2012-06-27 at 15:54 +0300, Avi Kivity wrote: Acked-by: Avi Kivity a...@redhat.com Thanks Avi! Can you give me your ack's too (for this and other ones in the series)? And if you ok, I can route this

Re: [PATCH 2/4] KVM: Use __print_hex() for kvm_emulate_insn tracepoint

2012-06-27 Thread Namhyung Kim
On Wed, 27 Jun 2012 21:52:44 -0400, Steven Rostedt wrote: On Thu, 2012-06-28 at 10:16 +0900, Namhyung Kim wrote: [CC'ing David] Hi, Steve On Wed, 27 Jun 2012 09:20:24 -0400, Steven Rostedt wrote: On Wed, 2012-06-27 at 15:54 +0300, Avi Kivity wrote: Acked-by: Avi Kivity

[PATCH 2/4] KVM: Use __print_hex() for kvm_emulate_insn tracepoint

2012-06-26 Thread Namhyung Kim
From: Namhyung Kim namhyung@lge.com The kvm_emulate_insn tracepoint used __print_insn() for printing its instructions. However it makes the format of the event hard to parse as it reveals TP internals. Fortunately, kernel provides __print_hex for almost same purpose, we can use it instead