diff options
Diffstat (limited to 'tools/perf/util/probe-finder.c')
-rw-r--r-- | tools/perf/util/probe-finder.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/tools/perf/util/probe-finder.c b/tools/perf/util/probe-finder.c index 525136684d4e..9b0e1b1f9755 100644 --- a/tools/perf/util/probe-finder.c +++ b/tools/perf/util/probe-finder.c | |||
@@ -783,6 +783,16 @@ static int convert_probe_point(Dwarf_Die *sp_die, struct probe_finder *pf) | |||
783 | /* This function has no name. */ | 783 | /* This function has no name. */ |
784 | tev->point.offset = (unsigned long)pf->addr; | 784 | tev->point.offset = (unsigned long)pf->addr; |
785 | 785 | ||
786 | /* Return probe must be on the head of a subprogram */ | ||
787 | if (pf->pev->point.retprobe) { | ||
788 | if (tev->point.offset != 0) { | ||
789 | pr_warning("Return probe must be on the head of" | ||
790 | " a real function\n"); | ||
791 | return -EINVAL; | ||
792 | } | ||
793 | tev->point.retprobe = true; | ||
794 | } | ||
795 | |||
786 | pr_debug("Probe point found: %s+%lu\n", tev->point.symbol, | 796 | pr_debug("Probe point found: %s+%lu\n", tev->point.symbol, |
787 | tev->point.offset); | 797 | tev->point.offset); |
788 | 798 | ||