diff options
author | David S. Miller <davem@sunset.davemloft.net> | 2006-02-26 23:51:29 +0100 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2006-03-20 10:14:04 +0100 |
commit | 6cc80cfab8b2ce1919ad5862a43f6b7bcf163c80 (patch) | |
tree | aa76ee44c60684a607a4e4325007b8d1d2403fb4 /arch | |
parent | [SPARC64]: Niagara optimized XOR functions for RAID. (diff) | |
download | linux-6cc80cfab8b2ce1919ad5862a43f6b7bcf163c80.tar.xz linux-6cc80cfab8b2ce1919ad5862a43f6b7bcf163c80.zip |
[SPARC64]: Report mondo error correctly in hypervisor_xcall_deliver().
It's in "arg0" not "func".
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/sparc64/kernel/smp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/sparc64/kernel/smp.c b/arch/sparc64/kernel/smp.c index 1ce940811492..5ff2483e70bf 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; } |