diff options
author | Oleg Nesterov <oleg@redhat.com> | 2013-01-31 13:15:30 -0500 |
---|---|---|
committer | Oleg Nesterov <oleg@redhat.com> | 2013-02-08 12:24:30 -0500 |
commit | b64b007797c1e6d6b745c93c296ba1d5f4d72d86 (patch) | |
tree | b2cfd860f68b421484d7992f354d62b8e6b7f1ce | |
parent | 7e4e28c53963e6cfa94d8109bb8f5233c5659048 (diff) |
uprobes/tracing: Introduce is_trace_uprobe_enabled()
probe_event_enable/disable() check tu->consumer != NULL to avoid the
wrong uprobe_register/unregister().
We are going to kill this pointer and "struct uprobe_trace_consumer",
so we add the new helper, is_trace_uprobe_enabled(), which can rely
on TP_FLAG_TRACE/TP_FLAG_PROFILE instead.
Note: the current logic doesn't look optimal, it is not clear why
TP_FLAG_TRACE/TP_FLAG_PROFILE are mutually exclusive, we will probably
change this later.
Also kill the unused TP_FLAG_UPROBE.
Signed-off-by: Oleg Nesterov <oleg@redhat.com>
Acked-by: Srikar Dronamraju <srikar@linux.vnet.ibm.com>
-rw-r--r-- | kernel/trace/trace_probe.h | 1 | ||||
-rw-r--r-- | kernel/trace/trace_uprobe.c | 9 |
2 files changed, 7 insertions, 3 deletions
diff --git a/kernel/trace/trace_probe.h b/kernel/trace/trace_probe.h index 933708677814..5c7e09d10d74 100644 --- a/kernel/trace/trace_probe.h +++ b/kernel/trace/trace_probe.h | |||
@@ -66,7 +66,6 @@ | |||
66 | #define TP_FLAG_TRACE 1 | 66 | #define TP_FLAG_TRACE 1 |
67 | #define TP_FLAG_PROFILE 2 | 67 | #define TP_FLAG_PROFILE 2 |
68 | #define TP_FLAG_REGISTERED 4 | 68 | #define TP_FLAG_REGISTERED 4 |
69 | #define TP_FLAG_UPROBE 8 | ||
70 | 69 | ||
71 | 70 | ||
72 | /* data_rloc: data relative location, compatible with u32 */ | 71 | /* data_rloc: data relative location, compatible with u32 */ |
diff --git a/kernel/trace/trace_uprobe.c b/kernel/trace/trace_uprobe.c index f7838cfd61b9..d6c6e2a345a7 100644 --- a/kernel/trace/trace_uprobe.c +++ b/kernel/trace/trace_uprobe.c | |||
@@ -539,12 +539,17 @@ partial: | |||
539 | return TRACE_TYPE_PARTIAL_LINE; | 539 | return TRACE_TYPE_PARTIAL_LINE; |
540 | } | 540 | } |
541 | 541 | ||
542 | static inline bool is_trace_uprobe_enabled(struct trace_uprobe *tu) | ||
543 | { | ||
544 | return tu->flags & (TP_FLAG_TRACE | TP_FLAG_PROFILE); | ||
545 | } | ||
546 | |||
542 | static int probe_event_enable(struct trace_uprobe *tu, int flag) | 547 | static int probe_event_enable(struct trace_uprobe *tu, int flag) |
543 | { | 548 | { |
544 | struct uprobe_trace_consumer *utc; | 549 | struct uprobe_trace_consumer *utc; |
545 | int ret = 0; | 550 | int ret = 0; |
546 | 551 | ||
547 | if (tu->consumer) | 552 | if (is_trace_uprobe_enabled(tu)) |
548 | return -EINTR; | 553 | return -EINTR; |
549 | 554 | ||
550 | utc = kzalloc(sizeof(struct uprobe_trace_consumer), GFP_KERNEL); | 555 | utc = kzalloc(sizeof(struct uprobe_trace_consumer), GFP_KERNEL); |
@@ -568,7 +573,7 @@ static int probe_event_enable(struct trace_uprobe *tu, int flag) | |||
568 | 573 | ||
569 | static void probe_event_disable(struct trace_uprobe *tu, int flag) | 574 | static void probe_event_disable(struct trace_uprobe *tu, int flag) |
570 | { | 575 | { |
571 | if (!tu->consumer) | 576 | if (!is_trace_uprobe_enabled(tu)) |
572 | return; | 577 | return; |
573 | 578 | ||
574 | uprobe_unregister(tu->inode, tu->offset, &tu->consumer->cons); | 579 | uprobe_unregister(tu->inode, tu->offset, &tu->consumer->cons); |