lkml.org 
[lkml]   [2006]   [Apr]   [24]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
Date
From
SubjectRe: 2.6.16.9 alpha compile error
* Ernst Herzberg wrote:
> arch/alpha/kernel/setup.c: In function `register_cpus':
> arch/alpha/kernel/setup.c:486: warning: implicit declaration of function `for_each_possible_cpu'
> arch/alpha/kernel/setup.c:486: error: syntax error before '{' token
> arch/alpha/kernel/setup.c:488: error: `p' undeclared (first use in this function)
> arch/alpha/kernel/setup.c:488: error: (Each undeclared identifier is reported only once
> arch/alpha/kernel/setup.c:488: error: for each function it appears in.)
> arch/alpha/kernel/setup.c: At top level:
> arch/alpha/kernel/setup.c:492: error: syntax error before "return"

From: Andrew Morton <akpm@osdl.org>

Backport for_each_possible_cpu() into 2.6.16. Fixes the alpha build, and any
future occurrences.


Signed-off-by: Andrew Morton <akpm@osdl.org>
---

include/linux/cpumask.h | 1 +
1 files changed, 1 insertion(+)

--- a/include/linux/cpumask.h 2006-04-24 19:28:56.000000000 +0200
+++ b/include/linux/cpumask.h 2006-04-24 19:29:21.000000000 +0200
@@ -408,6 +408,7 @@
})

#define for_each_cpu(cpu) for_each_cpu_mask((cpu), cpu_possible_map)
+#define for_each_possible_cpu(cpu) for_each_cpu_mask((cpu), cpu_possible_map)
#define for_each_online_cpu(cpu) for_each_cpu_mask((cpu), cpu_online_map)
#define for_each_present_cpu(cpu) for_each_cpu_mask((cpu), cpu_present_map)

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
\
 
 \ /
  Last update: 2006-04-24 20:28    [W:0.034 / U:0.036 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site