diff options
| -rw-r--r-- | tools/perf/util/probe-event.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tools/perf/util/probe-event.c b/tools/perf/util/probe-event.c index 29cb65459811..e33554a562b3 100644 --- a/tools/perf/util/probe-event.c +++ b/tools/perf/util/probe-event.c | |||
| @@ -1867,6 +1867,12 @@ static int convert_to_probe_trace_events(struct perf_probe_event *pev, | |||
| 1867 | tev->point.symbol); | 1867 | tev->point.symbol); |
| 1868 | ret = -ENOENT; | 1868 | ret = -ENOENT; |
| 1869 | goto error; | 1869 | goto error; |
| 1870 | } else if (tev->point.offset > sym->end - sym->start) { | ||
| 1871 | pr_warning("Offset specified is greater than size of %s\n", | ||
| 1872 | tev->point.symbol); | ||
| 1873 | ret = -ENOENT; | ||
| 1874 | goto error; | ||
| 1875 | |||
| 1870 | } | 1876 | } |
| 1871 | 1877 | ||
| 1872 | return 1; | 1878 | return 1; |
