|
|
@@ -283,8 +283,9 @@ static void perf_top__print_sym_table(struct perf_top *top)
|
|
|
|
|
|
printf("%-*.*s\n", win_width, win_width, graph_dotted_line);
|
|
|
|
|
|
- if (hists->stats.nr_lost_warned !=
|
|
|
- hists->stats.nr_events[PERF_RECORD_LOST]) {
|
|
|
+ if (!top->record_opts.overwrite &&
|
|
|
+ (hists->stats.nr_lost_warned !=
|
|
|
+ hists->stats.nr_events[PERF_RECORD_LOST])) {
|
|
|
hists->stats.nr_lost_warned =
|
|
|
hists->stats.nr_events[PERF_RECORD_LOST];
|
|
|
color_fprintf(stdout, PERF_COLOR_RED,
|
|
|
@@ -611,7 +612,8 @@ static void *display_thread_tui(void *arg)
|
|
|
|
|
|
perf_evlist__tui_browse_hists(top->evlist, help, &hbt,
|
|
|
top->min_percent,
|
|
|
- &top->session->header.env, true);
|
|
|
+ &top->session->header.env,
|
|
|
+ !top->record_opts.overwrite);
|
|
|
|
|
|
done = 1;
|
|
|
return NULL;
|