]> www.infradead.org Git - users/jedix/linux-maple.git/commitdiff
perf annotate: Remove unused len parameter from annotation_line__print()
authorNamhyung Kim <namhyung@kernel.org>
Mon, 10 Mar 2025 22:49:20 +0000 (15:49 -0700)
committerNamhyung Kim <namhyung@kernel.org>
Thu, 13 Mar 2025 07:19:51 +0000 (00:19 -0700)
It's not used anywhere, let's get rid of it.

Reviewed-by: Ian Rogers <irogers@google.com>
Link: https://lore.kernel.org/r/20250310224925.799005-3-namhyung@kernel.org
Signed-off-by: Namhyung Kim <namhyung@kernel.org>
tools/perf/util/annotate.c

index 31bb326b07a68e46df9848b596cff993ec7aea36..2e0f70b4872b475ab58be105c9b9dc08d77a5a58 100644 (file)
@@ -760,7 +760,7 @@ static int disasm_line__print(struct disasm_line *dl, u64 start, int addr_fmt_wi
 
 static int
 annotation_line__print(struct annotation_line *al, struct symbol *sym, u64 start,
-                      struct evsel *evsel, u64 len, int min_pcnt, int printed,
+                      struct evsel *evsel, int min_pcnt, int printed,
                       int max_lines, struct annotation_line *queue, int addr_fmt_width,
                       int percent_type)
 {
@@ -796,7 +796,7 @@ annotation_line__print(struct annotation_line *al, struct symbol *sym, u64 start
                        list_for_each_entry_from(queue, &notes->src->source, node) {
                                if (queue == al)
                                        break;
-                               annotation_line__print(queue, sym, start, evsel, len,
+                               annotation_line__print(queue, sym, start, evsel,
                                                       0, 0, 1, NULL, addr_fmt_width,
                                                       percent_type);
                        }
@@ -1183,7 +1183,6 @@ int symbol__annotate_printf(struct map_symbol *ms, struct evsel *evsel)
        int printed = 2, queue_len = 0, addr_fmt_width;
        int more = 0;
        bool context = opts->context;
-       u64 len;
        int width = annotation__pcnt_width(notes);
        int graph_dotted_len;
        char buf[512];
@@ -1197,8 +1196,6 @@ int symbol__annotate_printf(struct map_symbol *ms, struct evsel *evsel)
        else
                d_filename = basename(filename);
 
-       len = symbol__size(sym);
-
        if (evsel__is_group_event(evsel)) {
                evsel__group_desc(evsel, buf, sizeof(buf));
                evsel_name = buf;
@@ -1227,7 +1224,7 @@ int symbol__annotate_printf(struct map_symbol *ms, struct evsel *evsel)
                        queue_len = 0;
                }
 
-               err = annotation_line__print(pos, sym, start, evsel, len,
+               err = annotation_line__print(pos, sym, start, evsel,
                                             opts->min_pcnt, printed, opts->max_lines,
                                             queue, addr_fmt_width, opts->percent_type);