summaryrefslogtreecommitdiffstats
path: root/arch/ia64/sn
diff options
context:
space:
mode:
authorRuss Anderson2005-10-26 00:34:19 +0200
committerTony Luck2005-10-26 01:53:38 +0200
commite7f98dbbb89b68b23a5115708412a820a713fbf1 (patch)
treeec373399557962045efa884d17b4a094b701c45b /arch/ia64/sn
parent[PATCH] qlogic lockup fix (diff)
downloadkernel-qcow2-linux-e7f98dbbb89b68b23a5115708412a820a713fbf1.tar.gz
kernel-qcow2-linux-e7f98dbbb89b68b23a5115708412a820a713fbf1.tar.xz
kernel-qcow2-linux-e7f98dbbb89b68b23a5115708412a820a713fbf1.zip
[IA64-SGI] fix bte_copy() calling get_nasid() while preemptible
bte_copy() calls calls get_nasid(), which will get flagged if preemption if enabled. raw_smp_processor_id() is used instead. It is OK if we migrate off node. Signed-off-by: Russ Anderson (rja@sgi.com) Signed-off-by: Tony Luck <tony.luck@intel.com>
Diffstat (limited to 'arch/ia64/sn')
-rw-r--r--arch/ia64/sn/kernel/bte.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/ia64/sn/kernel/bte.c b/arch/ia64/sn/kernel/bte.c
index 45854c637e9c..d71f4de44f79 100644
--- a/arch/ia64/sn/kernel/bte.c
+++ b/arch/ia64/sn/kernel/bte.c
@@ -87,7 +87,7 @@ bte_result_t bte_copy(u64 src, u64 dest, u64 len, u64 mode, void *notification)
unsigned long irq_flags;
unsigned long itc_end = 0;
int nasid_to_try[MAX_NODES_TO_TRY];
- int my_nasid = get_nasid();
+ int my_nasid = cpuid_to_nasid(raw_smp_processor_id());
int bte_if_index, nasid_index;
int bte_first, btes_per_node = BTES_PER_NODE;