Fixed build failure in arch/alpha/kernel/setup.c introduced in 2.6.16.6.

svn path=/dists/sid/linux-2.6/; revision=6473
This commit is contained in:
Norbert Tretkowski 2006-04-21 22:39:25 +00:00
parent 09e59a3e6a
commit fdfa099d60
3 changed files with 20 additions and 0 deletions

8
debian/changelog vendored
View File

@ -1,3 +1,11 @@
linux-2.6 (2.6.16-10) UNRELEASED; urgency=low
[ Norbert Tretkowski ]
* [alpha] Fixed build failure in arch/alpha/kernel/setup.c introduced in
2.6.16.6. (closes: #364206)
-- Norbert Tretkowski <nobse@debian.org> Sat, 22 Apr 2006 00:33:11 +0200
linux-2.6 (2.6.16-9) unstable; urgency=low
[ maximilian attems ]

11
debian/patches/alpha-build-fix.patch vendored Normal file
View File

@ -0,0 +1,11 @@
--- a/arch/alpha/kernel/setup.c 2006-04-22 00:26:33.000000000 +0200
+++ b/arch/alpha/kernel/setup.c 2006-04-22 00:30:02.000000000 +0200
@@ -483,7 +483,7 @@
{
int i;
- for_each_possible_cpu(i) {
+ for_each_cpu(i) {
struct cpu *p = kzalloc(sizeof(*p), GFP_KERNEL);
if (!p)
return -ENOMEM;

1
debian/patches/series/10 vendored Normal file
View File

@ -0,0 +1 @@
+ alpha-build-fix.patch