diff options
author | Dongsheng Yang <yangds.fnst@cn.fujitsu.com> | 2014-05-16 01:37:05 -0400 |
---|---|---|
committer | Jiri Olsa <jolsa@kernel.org> | 2014-05-16 03:17:50 -0400 |
commit | 9d372ca59bcb9339b4a34a9bf978a1fc15b68b03 (patch) | |
tree | 8b90f727c4ff2b223adcbf0119d247ee6708a55a /tools/perf | |
parent | 67d6259dd021006ade25d67b045ad2089b5aba96 (diff) |
perf sched: Cleanup, remove unused variables in map_switch_event()
In map_switch_event(), we don't care the previous process currently,
this patch remove the infomation we get but not used.
Signed-off-by: Dongsheng Yang <yangds.fnst@cn.fujitsu.com>
Link: http://lkml.kernel.org/r/1400218625-14613-1-git-send-email-yangds.fnst@cn.fujitsu.com
Signed-off-by: Jiri Olsa <jolsa@kernel.org>
Diffstat (limited to 'tools/perf')
-rw-r--r-- | tools/perf/builtin-sched.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/tools/perf/builtin-sched.c b/tools/perf/builtin-sched.c index 0b4fe533e1a1..d7176830b9b2 100644 --- a/tools/perf/builtin-sched.c +++ b/tools/perf/builtin-sched.c | |||
@@ -1266,9 +1266,8 @@ static int process_sched_wakeup_event(struct perf_tool *tool, | |||
1266 | static int map_switch_event(struct perf_sched *sched, struct perf_evsel *evsel, | 1266 | static int map_switch_event(struct perf_sched *sched, struct perf_evsel *evsel, |
1267 | struct perf_sample *sample, struct machine *machine) | 1267 | struct perf_sample *sample, struct machine *machine) |
1268 | { | 1268 | { |
1269 | const u32 prev_pid = perf_evsel__intval(evsel, sample, "prev_pid"), | 1269 | const u32 next_pid = perf_evsel__intval(evsel, sample, "next_pid"); |
1270 | next_pid = perf_evsel__intval(evsel, sample, "next_pid"); | 1270 | struct thread *sched_in; |
1271 | struct thread *sched_out __maybe_unused, *sched_in; | ||
1272 | int new_shortname; | 1271 | int new_shortname; |
1273 | u64 timestamp0, timestamp = sample->time; | 1272 | u64 timestamp0, timestamp = sample->time; |
1274 | s64 delta; | 1273 | s64 delta; |
@@ -1291,7 +1290,6 @@ static int map_switch_event(struct perf_sched *sched, struct perf_evsel *evsel, | |||
1291 | return -1; | 1290 | return -1; |
1292 | } | 1291 | } |
1293 | 1292 | ||
1294 | sched_out = machine__findnew_thread(machine, 0, prev_pid); | ||
1295 | sched_in = machine__findnew_thread(machine, 0, next_pid); | 1293 | sched_in = machine__findnew_thread(machine, 0, next_pid); |
1296 | 1294 | ||
1297 | sched->curr_thread[this_cpu] = sched_in; | 1295 | sched->curr_thread[this_cpu] = sched_in; |