Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 903cce6e authored by Arnaldo Carvalho de Melo's avatar Arnaldo Carvalho de Melo
Browse files

perf hists: Handle verbose in hists__sort_list_width



Otherwise entries will get chopped up on the window.

Cc: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Mike Galbraith <efault@gmx.de>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Stephane Eranian <eranian@google.com>
LKML-Reference: <new-submission>
Signed-off-by: default avatarArnaldo Carvalho de Melo <acme@redhat.com>
parent 76ce93d0
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -876,6 +876,9 @@ unsigned int hists__sort_list_width(struct hists *self)
		if (!se->elide)
			ret += 2 + hists__col_len(self, se->se_width_idx);

	if (verbose) /* Addr + origin */
		ret += 3 + BITS_PER_LONG / 4;

	return ret;
}