Prev: [PATCH V2 1/4] Frontswap (was Transcendent Memory): swap data structure changes
Next: [PATCH -next] RapidIO: fix RapidIO sysfs hierarchy
From: Luck, Tony on 28 May 2010 13:50 WARNING: Section mismatch in reference from the function cpu_notify_nofail() to the variable .cpuinit.data:cpu_chain It appears that "cpu_chain" should not be marked as __cpuinitdata. Signed-off-by: Tony Luck <tony.luck(a)intel.com> --- diff --git a/kernel/cpu.c b/kernel/cpu.c index 3097382..84d66a0 100644 --- a/kernel/cpu.c +++ b/kernel/cpu.c @@ -34,7 +34,7 @@ void cpu_maps_update_done(void) mutex_unlock(&cpu_add_remove_lock); } -static __cpuinitdata RAW_NOTIFIER_HEAD(cpu_chain); +static RAW_NOTIFIER_HEAD(cpu_chain); /* If set, cpu_up and cpu_down will return -EBUSY and do nothing. * Should always be manipulated under cpu_add_remove_lock -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo(a)vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/ |