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

Commit a4b2b6f5 authored by Namhyung Kim's avatar Namhyung Kim Committed by Arnaldo Carvalho de Melo
Browse files

perf sched timehist: Skip non-idle events when necessary



Sometimes it only focuses on idle-related events like upcoming idle-hist
feature.  In this case we don't want to see other event to reduce noise.

Signed-off-by: default avatarNamhyung Kim <namhyung@kernel.org>
Acked-by: default avatarDavid Ahern <dsahern@gmail.com>
Cc: Andi Kleen <andi@firstfloor.org>
Cc: Jiri Olsa <jolsa@kernel.org>
Cc: Minchan Kim <minchan@kernel.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Link: http://lkml.kernel.org/r/20161208144755.16673-5-namhyung@kernel.org


Signed-off-by: default avatarArnaldo Carvalho de Melo <acme@redhat.com>
parent 699b5b92
Loading
Loading
Loading
Loading
+18 −7
Original line number Original line Diff line number Diff line
@@ -2190,7 +2190,9 @@ static struct thread *timehist_get_thread(struct perf_sched *sched,
}
}


static bool timehist_skip_sample(struct perf_sched *sched,
static bool timehist_skip_sample(struct perf_sched *sched,
				 struct thread *thread)
				 struct thread *thread,
				 struct perf_evsel *evsel,
				 struct perf_sample *sample)
{
{
	bool rc = false;
	bool rc = false;


@@ -2199,10 +2201,19 @@ static bool timehist_skip_sample(struct perf_sched *sched,
		sched->skipped_samples++;
		sched->skipped_samples++;
	}
	}


	if (sched->idle_hist) {
		if (strcmp(perf_evsel__name(evsel), "sched:sched_switch"))
			rc = true;
		else if (perf_evsel__intval(evsel, sample, "prev_pid") != 0 &&
			 perf_evsel__intval(evsel, sample, "next_pid") != 0)
			rc = true;
	}

	return rc;
	return rc;
}
}


static void timehist_print_wakeup_event(struct perf_sched *sched,
static void timehist_print_wakeup_event(struct perf_sched *sched,
					struct perf_evsel *evsel,
					struct perf_sample *sample,
					struct perf_sample *sample,
					struct machine *machine,
					struct machine *machine,
					struct thread *awakened)
					struct thread *awakened)
@@ -2215,8 +2226,8 @@ static void timehist_print_wakeup_event(struct perf_sched *sched,
		return;
		return;


	/* show wakeup unless both awakee and awaker are filtered */
	/* show wakeup unless both awakee and awaker are filtered */
	if (timehist_skip_sample(sched, thread) &&
	if (timehist_skip_sample(sched, thread, evsel, sample) &&
	    timehist_skip_sample(sched, awakened)) {
	    timehist_skip_sample(sched, awakened, evsel, sample)) {
		return;
		return;
	}
	}


@@ -2261,7 +2272,7 @@ static int timehist_sched_wakeup_event(struct perf_tool *tool,
	/* show wakeups if requested */
	/* show wakeups if requested */
	if (sched->show_wakeups &&
	if (sched->show_wakeups &&
	    !perf_time__skip_sample(&sched->ptime, sample->time))
	    !perf_time__skip_sample(&sched->ptime, sample->time))
		timehist_print_wakeup_event(sched, sample, machine, thread);
		timehist_print_wakeup_event(sched, evsel, sample, machine, thread);


	return 0;
	return 0;
}
}
@@ -2288,8 +2299,8 @@ static void timehist_print_migration_event(struct perf_sched *sched,
	if (thread == NULL)
	if (thread == NULL)
		return;
		return;


	if (timehist_skip_sample(sched, thread) &&
	if (timehist_skip_sample(sched, thread, evsel, sample) &&
	    timehist_skip_sample(sched, migrated)) {
	    timehist_skip_sample(sched, migrated, evsel, sample)) {
		return;
		return;
	}
	}


@@ -2374,7 +2385,7 @@ static int timehist_sched_change_event(struct perf_tool *tool,
		goto out;
		goto out;
	}
	}


	if (timehist_skip_sample(sched, thread))
	if (timehist_skip_sample(sched, thread, evsel, sample))
		goto out;
		goto out;


	tr = thread__get_runtime(thread);
	tr = thread__get_runtime(thread);