Re: [PULL] x86 cpumask work

From: Cliff Wickman
Date: Tue Mar 17 2009 - 14:56:40 EST



From: Cliff Wickman <cpw@xxxxxxx>

A patch on Mar13 2009 introduced a bug. I hope the below 1-line fix can
make the 'urgent' list, and get fixed before that patch moves on.

The Mar13 patch is saved at
http://marc.info/?l=linux-kernel&m=123683186504948&w=2

The allocation of per-cpu uv_flush_tlb_mask's in arch/x86/kernel/tlb_uv.c
changed a variable that should been reset to 0.

Signed-off-by: Cliff Wickman <cpw@xxxxxxx>
Acked-by: Mike Travis <travis@xxxxxxx>
---
arch/x86/kernel/tlb_uv.c | 1 +
1 file changed, 1 insertion(+)

Index: linux/arch/x86/kernel/tlb_uv.c
===================================================================
--- linux.orig/arch/x86/kernel/tlb_uv.c 2009-03-16 11:14:40.000000000 -0500
+++ linux/arch/x86/kernel/tlb_uv.c 2009-03-16 11:15:38.000000000 -0500
@@ -777,6 +777,7 @@ static int __init uv_bau_init(void)
BUG_ON(!uv_bau_table_bases);

last_blade = -1;
+ cur_cpu = 0;
for_each_online_node(node) {
blade = uv_node_to_blade_id(node);
if (blade == last_blade)
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/