lkml.org 
[lkml]   [2006]   [Sep]   [27]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
From
Date
Subject[PATCH] cpumask add highest_possible_node_id fix
Fix typo in lib/cpumask.c - looks like a cut+paste forgot
to change a cpu macro call to a node macro call. This
typo caused the following build warnings:

lib/cpumask.c: In function `highest_possible_node_id':
lib/cpumask.c:56: warning: passing arg 1 of `__first_cpu' from incompatible pointer type
lib/cpumask.c:56: warning: passing arg 2 of `__next_cpu' from incompatible pointer type

Signed-off-by: Paul Jackson <pj@sgi.com>

---

lib/cpumask.c | 2 +-
1 files changed, 1 insertion(+), 1 deletion(-)

--- 2.6.18-rc7-mm1.orig/lib/cpumask.c 2006-09-26 16:25:57.000000000 -0700
+++ 2.6.18-rc7-mm1/lib/cpumask.c 2006-09-27 01:38:17.000000000 -0700
@@ -53,7 +53,7 @@ int highest_possible_node_id(void)
unsigned int node;
unsigned int highest = 0;

- for_each_cpu_mask(node, node_possible_map)
+ for_each_node_mask(node, node_possible_map)
highest = node;
return highest;
}
--
I won't rest till it's the best ...
Programmer, Linux Scalability
Paul Jackson <pj@sgi.com> 1.925.600.0401
-
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-09-27 10:57    [W:0.019 / U:1.180 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site