aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/trace/trace_uprobe.c
diff options
context:
space:
mode:
authorOleg Nesterov <oleg@redhat.com>2013-04-10 10:25:49 -0400
committerOleg Nesterov <oleg@redhat.com>2013-04-13 09:32:04 -0400
commit32520b2c695b23221751eb09360a6a3dd3105b52 (patch)
tree2ae042675882778a52f7b6a22afc974a1d942365 /kernel/trace/trace_uprobe.c
parent4ee5a52ed6301d0afa56cc995ef2c3795f45e801 (diff)
uprobes/tracing: Don't pass addr=ip to perf_trace_buf_submit()
uprobe_perf_print() passes addr=ip to perf_trace_buf_submit() for no reason. This sets perf_sample_data->addr for PERF_SAMPLE_ADDR, we already have perf_sample_data->ip initialized if PERF_SAMPLE_IP. Signed-off-by: Oleg Nesterov <oleg@redhat.com> Acked-by: Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com> Acked-by: Srikar Dronamraju <srikar@linux.vnet.ibm.com>
Diffstat (limited to 'kernel/trace/trace_uprobe.c')
-rw-r--r--kernel/trace/trace_uprobe.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/kernel/trace/trace_uprobe.c b/kernel/trace/trace_uprobe.c
index 2d08bea638a4..37ccb72f0f3b 100644
--- a/kernel/trace/trace_uprobe.c
+++ b/kernel/trace/trace_uprobe.c
@@ -811,7 +811,6 @@ static void uprobe_perf_print(struct trace_uprobe *tu,
811 struct ftrace_event_call *call = &tu->call; 811 struct ftrace_event_call *call = &tu->call;
812 struct uprobe_trace_entry_head *entry; 812 struct uprobe_trace_entry_head *entry;
813 struct hlist_head *head; 813 struct hlist_head *head;
814 unsigned long ip;
815 void *data; 814 void *data;
816 int size, rctx, i; 815 int size, rctx, i;
817 816
@@ -825,13 +824,12 @@ static void uprobe_perf_print(struct trace_uprobe *tu,
825 if (!entry) 824 if (!entry)
826 goto out; 825 goto out;
827 826
828 ip = instruction_pointer(regs);
829 if (is_ret_probe(tu)) { 827 if (is_ret_probe(tu)) {
830 entry->vaddr[0] = func; 828 entry->vaddr[0] = func;
831 entry->vaddr[1] = ip; 829 entry->vaddr[1] = instruction_pointer(regs);
832 data = DATAOF_TRACE_ENTRY(entry, true); 830 data = DATAOF_TRACE_ENTRY(entry, true);
833 } else { 831 } else {
834 entry->vaddr[0] = ip; 832 entry->vaddr[0] = instruction_pointer(regs);
835 data = DATAOF_TRACE_ENTRY(entry, false); 833 data = DATAOF_TRACE_ENTRY(entry, false);
836 } 834 }
837 835
@@ -839,7 +837,7 @@ static void uprobe_perf_print(struct trace_uprobe *tu,
839 call_fetch(&tu->args[i].fetch, regs, data + tu->args[i].offset); 837 call_fetch(&tu->args[i].fetch, regs, data + tu->args[i].offset);
840 838
841 head = this_cpu_ptr(call->perf_events); 839 head = this_cpu_ptr(call->perf_events);
842 perf_trace_buf_submit(entry, size, rctx, ip, 1, regs, head, NULL); 840 perf_trace_buf_submit(entry, size, rctx, 0, 1, regs, head, NULL);
843 out: 841 out:
844 preempt_enable(); 842 preempt_enable();
845} 843}