[tip:perf/core] perf test: Fix return values checking

From: tip-bot for Han Pingtian
Date: Fri Jan 28 2011 - 16:05:47 EST


Commit-ID: 54489c189b1a0c10eaf21c6d2c5916b50442c871
Gitweb: http://git.kernel.org/tip/54489c189b1a0c10eaf21c6d2c5916b50442c871
Author: Han Pingtian <phan@xxxxxxxxxx>
AuthorDate: Tue, 25 Jan 2011 07:39:00 +0800
Committer: Arnaldo Carvalho de Melo <acme@xxxxxxxxxx>
CommitDate: Fri, 28 Jan 2011 09:21:19 -0200

perf test: Fix return values checking

Fixing some cut'n'paste mistakes.

LKML-Reference: <20110124233900.GA3443@xxxxxxxxxxxxxxxxxxxxx>
Signed-off-by: Han Pingtian <phan@xxxxxxxxxx>
[ committer note: I had already removed the CPU_ALLOC calls ]
Signed-off-by: Arnaldo Carvalho de Melo <acme@xxxxxxxxxx>
---
tools/perf/builtin-test.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/tools/perf/builtin-test.c b/tools/perf/builtin-test.c
index 231e3e2..738830d 100644
--- a/tools/perf/builtin-test.c
+++ b/tools/perf/builtin-test.c
@@ -495,8 +495,8 @@ static int test__basic_mmap(void)
}

cpus = cpu_map__new(NULL);
- if (threads == NULL) {
- pr_debug("thread_map__new\n");
+ if (cpus == NULL) {
+ pr_debug("cpu_map__new\n");
goto out_free_threads;
}

@@ -510,7 +510,7 @@ static int test__basic_mmap(void)
}

evlist = perf_evlist__new();
- if (threads == NULL) {
+ if (evlist == NULL) {
pr_debug("perf_evlist__new\n");
goto out_free_cpus;
}
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/