[PATCH] x86/perf_events: build fix

From: Jan Beulich
Date: Fri Nov 02 2012 - 09:51:43 EST


At least some older gcc versions dislike mixing constant and non-const
data in the same section ("... causes a section type confict").

Signed-off-by: Jan Beulich <jbeulich@xxxxxxxx>

---
arch/x86/kernel/cpu/perf_event_p6.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

--- 3.7-rc3/arch/x86/kernel/cpu/perf_event_p6.c
+++ 3.7-rc3-x86-perf-p6-section/arch/x86/kernel/cpu/perf_event_p6.c
@@ -19,7 +19,7 @@ static const u64 p6_perfmon_event_map[]

};

-static __initconst u64 p6_hw_cache_event_ids
+static const u64 __initconst p6_hw_cache_event_ids
[PERF_COUNT_HW_CACHE_MAX]
[PERF_COUNT_HW_CACHE_OP_MAX]
[PERF_COUNT_HW_CACHE_RESULT_MAX] =



--
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/