Displaying 1 result from an estimated 1 matches for "mt_info".
Did you mean:
st_info
2009 Jul 15
0
[PATCH] rename for_each_cpu() to for_each_possible_cpu()
...xt_lock));
--- 2009-07-10.orig/xen/arch/ia64/linux-xen/smpboot.c 2009-07-10 13:57:41.000000000 +0200
+++ 2009-07-10/xen/arch/ia64/linux-xen/smpboot.c 2009-07-15 10:02:26.000000000 +0200
@@ -675,7 +675,7 @@ remove_from_mtinfo(int cpu)
{
int i;
- for_each_cpu(i)
+ for_each_possible_cpu(i)
if (mt_info[i].valid && mt_info[i].socket_id ==
cpu_data(cpu)->socket_id)
mt_info[i].valid = 0;
@@ -874,7 +874,7 @@ check_for_mtinfo_index(void)
{
int i;
- for_each_cpu(i)
+ for_each_possible_cpu(i)
if (!mt_info[i].valid)
return i;
@@ -892,7 +892,7 @@ check_for_new_soc...