aboutsummaryrefslogtreecommitdiffstats
path: root/arch/alpha/kernel/smp.c
diff options
context:
space:
mode:
Diffstat (limited to 'arch/alpha/kernel/smp.c')
-rw-r--r--arch/alpha/kernel/smp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/alpha/kernel/smp.c b/arch/alpha/kernel/smp.c
index 63c2073401ee..2525692db0ab 100644
--- a/arch/alpha/kernel/smp.c
+++ b/arch/alpha/kernel/smp.c
@@ -755,7 +755,7 @@ smp_call_function_on_cpu (void (*func) (void *info), void *info, int retry,
755 if (atomic_read(&data.unstarted_count) > 0) { 755 if (atomic_read(&data.unstarted_count) > 0) {
756 long start_time = jiffies; 756 long start_time = jiffies;
757 printk(KERN_ERR "%s: initial timeout -- trying long wait\n", 757 printk(KERN_ERR "%s: initial timeout -- trying long wait\n",
758 __FUNCTION__); 758 __func__);
759 timeout = jiffies + 30 * HZ; 759 timeout = jiffies + 30 * HZ;
760 while (atomic_read(&data.unstarted_count) > 0 760 while (atomic_read(&data.unstarted_count) > 0
761 && time_before(jiffies, timeout)) 761 && time_before(jiffies, timeout))
@@ -764,7 +764,7 @@ smp_call_function_on_cpu (void (*func) (void *info), void *info, int retry,
764 long delta = jiffies - start_time; 764 long delta = jiffies - start_time;
765 printk(KERN_ERR 765 printk(KERN_ERR
766 "%s: response %ld.%ld seconds into long wait\n", 766 "%s: response %ld.%ld seconds into long wait\n",
767 __FUNCTION__, delta / HZ, 767 __func__, delta / HZ,
768 (100 * (delta - ((delta / HZ) * HZ))) / HZ); 768 (100 * (delta - ((delta / HZ) * HZ))) / HZ);
769 } 769 }
770 } 770 }