[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1287066841-28569-1-git-send-email-gadiyar@ti.com>
Date: Thu, 14 Oct 2010 20:04:01 +0530
From: Anand Gadiyar <gadiyar@...com>
To: linux-kernel@...r.kernel.org, linux-arm-kernel@...ts.infradead.org,
linux-omap@...r.kernel.org
Cc: Anand Gadiyar <gadiyar@...com>,
Peter Zijlstra <a.p.zijlstra@...llo.nl>,
paulus <paulus@...ba.org>, Ingo Molnar <mingo@...e.hu>,
Tony Lindgren <tony@...mide.com>,
Russell King <linux@....linux.org.uk>
Subject: [PATCH] arm: perf: Fix build break due to a typo
armpmu is a pointer to a structure - We need to use the
structure pointer operator to access num_events, and not
the structure member operator.
This fixes the following build break when building for OMAP4.
CC arch/arm/kernel/perf_event.o
arch/arm/kernel/perf_event.c: In function 'armpmu_event_init':
arch/arm/kernel/perf_event.c:543: error: request for member 'num_events' in something not a structure or union
make[1]: *** [arch/arm/kernel/perf_event.o] Error 1
make: *** [arch/arm/kernel] Error 2
Signed-off-by: Anand Gadiyar <gadiyar@...com>
Cc: Peter Zijlstra <a.p.zijlstra@...llo.nl>
Cc: paulus <paulus@...ba.org>
Cc: Ingo Molnar <mingo@...e.hu>
Cc: Tony Lindgren <tony@...mide.com>
Cc: Russell King <linux@....linux.org.uk>
---
This break is reproducible on linux-next as of 20101014.
This was introduced in commit 15ac9a395a75 in linux-next
<http://git.kernel.org/?p=linux/kernel/git/sfr/linux-next.git;a=commitdiff;h=15ac9a395a753cb28c674e7ea80386ffdff21785>
Strangely, I did not catch it with a standard omap2plus_defconfig
build, but it showed up when I build a custom OMAP4-only config.
I've saved the defconfig for later analysis.
arch/arm/kernel/perf_event.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
Index: mainline/arch/arm/kernel/perf_event.c
===================================================================
--- mainline.orig/arch/arm/kernel/perf_event.c
+++ mainline/arch/arm/kernel/perf_event.c
@@ -540,7 +540,7 @@ static int armpmu_event_init(struct perf
event->destroy = hw_perf_event_destroy;
if (!atomic_inc_not_zero(&active_events)) {
- if (atomic_read(&active_events) > armpmu.num_events) {
+ if (atomic_read(&active_events) > armpmu->num_events) {
atomic_dec(&active_events);
return -ENOSPC;
}
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists