login
Header Space

 
 

Re: [stable] Soft lockups since stable kernel upgrade to 2.6.23.8

Score:
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]
To: Greg KH <greg@...>
Cc: Javier Kohen <jkohen@...>, <linux-kernel@...>, <gregkh@...>, <stable@...>
Date: Saturday, November 17, 2007 - 4:05 pm

Greg KH wrote:
This is the culprit, reverting fixes the issue.

Cheers
David

--- a/kernel/softlockup.c
+++ b/kernel/softlockup.c
@@ -80,10 +80,11 @@ void softlockup_tick(void)
        print_timestamp = per_cpu(print_timestamp, this_cpu);

        /* report at most once a second */
-       if (print_timestamp < (touch_timestamp + 1) ||
-               did_panic ||
-                       !per_cpu(watchdog_task, this_cpu))
+       if ((print_timestamp >= touch_timestamp &&
+                       print_timestamp < (touch_timestamp + 1)) ||
+                       did_panic || !per_cpu(watchdog_task, this_cpu)) {
                return;
+       }

        /* do not print during early bootup: */
        if (unlikely(system_state != SYSTEM_RUNNING)) {

-
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]

Messages in current thread:
Soft lockups since stable kernel upgrade to 2.6.23.8, Javier Kohen, (Sat Nov 17, 2:21 pm)
Re: [stable] Soft lockups since stable kernel upgrade to 2.6..., David, (Sat Nov 17, 4:05 pm)
Re: [stable] Soft lockups since stable kernel upgrade to 2.6..., Jeremy Fitzhardinge, (Sat Nov 17, 8:34 pm)
Re: [stable] Soft lockups since stable kernel upgrade to 2.6..., Jeremy Fitzhardinge, (Mon Nov 19, 9:40 pm)
speck-geostationary