[IA64-SGI] bte_copy nasid_index fix
authorRuss Anderson <rja@efs.americas.sgi.com>
Fri, 11 Nov 2005 22:52:02 +0000 (16:52 -0600)
committerTony Luck <tony.luck@intel.com>
Mon, 21 Nov 2005 22:19:36 +0000 (14:19 -0800)
The nasid_index was not being incremented if the
pointer was null, causing an infinite loop.

Signed-off-by: Russ Anderson (rja@sgi.com)
Signed-off-by: Tony Luck <tony.luck@intel.com>
arch/ia64/sn/kernel/bte.c

index d71f4de..dd73c0c 100644 (file)
@@ -137,6 +137,7 @@ retry_bteop:
                        bte = bte_if_on_node(nasid_to_try[nasid_index],bte_if_index);
 
                        if (bte == NULL) {
+                               nasid_index++;
                                continue;
                        }