diff options
| author | Ingo Molnar <mingo@kernel.org> | 2018-04-06 14:35:00 +0200 | 
|---|---|---|
| committer | Ingo Molnar <mingo@kernel.org> | 2018-04-06 14:35:00 +0200 | 
| commit | ce9f85c32678efd3ab9b8c9aade0f0ffed0016c5 (patch) | |
| tree | d65c928bfd844a7dc0139f74a13a688dfc3ec690 /tools/perf/ui/browser.c | |
| parent | d1e7e602cd64cf61f87dbf30df07c24df9eb1d99 (diff) | |
| parent | 01f97511f13cbf2ba3d23b2bffa06258dc81e283 (diff) | |
Merge tag 'perf-urgent-for-mingo-4.17-20180406' of git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux into perf/urgent
Pull perf/urgent fixes from Arnaldo Carvalho de Melo:
- Show group details on the title line in the annotate browser
  and 'perf annotate --stdio2' output, so that the per-event
  columns can have headers (Arnaldo Carvalho de Melo)
- Fixup vertical line separating metrics from instructions and
  cleaning unused lines at the bottom, both in the annotate TUI
  browser (Arnaldo Carvalho de Melo)
- Remove duplicated 'samples' in lost samples warning in
  'perf report' (Arnaldo Carvalho de Melo)
- Synchronize i915_drm.h, silencing the perf build process,
  automagically adding support for the new DRM_I915_QUERY
  ioctl (Arnaldo Carvalho de Melo)
- Make auxtrace_queues__add_buffer() allocate struct buffer,
  from a patchkit already applied (Adrian Hunter)
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Diffstat (limited to 'tools/perf/ui/browser.c')
| -rw-r--r-- | tools/perf/ui/browser.c | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/tools/perf/ui/browser.c b/tools/perf/ui/browser.c index d7bb2591838e..4f75561424ed 100644 --- a/tools/perf/ui/browser.c +++ b/tools/perf/ui/browser.c @@ -343,8 +343,8 @@ static int __ui_browser__refresh(struct ui_browser *browser)  	else  		width += 1; -	SLsmg_fill_region(browser->y + row, browser->x, -			  browser->height - row, width, ' '); +	SLsmg_fill_region(browser->y + row + browser->extra_title_lines, browser->x, +			  browser->rows - row, width, ' ');  	return 0;  } | 
