dect
/
linux-2.6
Archived
13
0
Fork 0

perf test: Fix return values checking

Fixing some cut'n'paste mistakes.

LKML-Reference: <20110124233900.GA3443@epc900.nay.redhat.com>
Signed-off-by: Han Pingtian <phan@redhat.com>
[ committer note: I had already removed the CPU_ALLOC calls ]
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
This commit is contained in:
Han Pingtian 2011-01-25 07:39:00 +08:00 committed by Arnaldo Carvalho de Melo
parent 3c42258c9a
commit 54489c189b
1 changed files with 3 additions and 3 deletions

View File

@ -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;
}