lists.openwall.net | lists / announce owl-users owl-dev john-users john-dev passwdqc-users yescrypt popa3d-users / oss-security kernel-hardening musl sabotage tlsify passwords / crypt-dev xvendor / Bugtraq Full-Disclosure linux-kernel linux-netdev linux-ext4 linux-hardening PHC | |
Open Source and information security mailing list archives
| ||
|
Date: Sun, 09 Mar 2014 23:04:58 +0100 From: Paul Bolle <pebolle@...cali.nl> To: David Howells <dhowells@...hat.com>, Koichi Yasutake <yasutake.koichi@...panasonic.com> Cc: linux-am33-list@...hat.com, linux-kernel@...r.kernel.org Subject: [PATCH] MN10300: Fix typo "CONFIG_GEENERIC_CLOCKEVENTS_BROADCAST" Signed-off-by: Paul Bolle <pebolle@...cali.nl> --- This typo has been in the tree since v2.6.37. Perhaps the negative test for CONFIG_GENERIC_CLOCKEVENTS_BROADCAST can actually be dropped. Anyhow, completely untested. arch/mn10300/kernel/cevt-mn10300.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/mn10300/kernel/cevt-mn10300.c b/arch/mn10300/kernel/cevt-mn10300.c index ccce35e..504ef6a 100644 --- a/arch/mn10300/kernel/cevt-mn10300.c +++ b/arch/mn10300/kernel/cevt-mn10300.c @@ -16,7 +16,7 @@ #include "internal.h" #ifdef CONFIG_SMP -#if (CONFIG_NR_CPUS > 2) && !defined(CONFIG_GEENERIC_CLOCKEVENTS_BROADCAST) +#if (CONFIG_NR_CPUS > 2) && !defined(CONFIG_GENERIC_CLOCKEVENTS_BROADCAST) #error "This doesn't scale well! Need per-core local timers." #endif #else /* CONFIG_SMP */ -- 1.8.5.3 -- 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