aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid S. Miller <davem@sunset.davemloft.net>2006-02-26 14:51:29 -0800
committerDavid S. Miller <davem@sunset.davemloft.net>2006-03-20 01:14:04 -0800
commit6cc80cfab8b2ce1919ad5862a43f6b7bcf163c80 (patch)
treeaa76ee44c60684a607a4e4325007b8d1d2403fb4
parent36344762396ca868d6076c41a84bda25f1ed9d3c (diff)
[SPARC64]: Report mondo error correctly in hypervisor_xcall_deliver().
It's in "arg0" not "func". Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r--arch/sparc64/kernel/smp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/sparc64/kernel/smp.c b/arch/sparc64/kernel/smp.c
index 1ce94081149..5ff2483e70b 100644
--- a/arch/sparc64/kernel/smp.c
+++ b/arch/sparc64/kernel/smp.c
@@ -617,7 +617,7 @@ static void hypervisor_xcall_deliver(u64 data0, u64 data1, u64 data2, cpumask_t
if (unlikely(++retries > 100)) {
printk("CPU[%d]: sun4v mondo error %lu\n",
- this_cpu, func);
+ this_cpu, arg0);
break;
}