]> pilppa.org Git - linux-2.6-omap-h63xx.git/blobdiff - kernel/softlockup.c
autofs4: don't release directory mutex if called in oz_mode
[linux-2.6-omap-h63xx.git] / kernel / softlockup.c
index d53ab702a7dbaaf9304eb9e7137f5a66138180e5..7bd8d1aadd5d3693bd881791e1130b1f603f5bce 100644 (file)
@@ -116,11 +116,8 @@ void softlockup_tick(void)
        print_timestamp = per_cpu(print_timestamp, this_cpu);
 
        /* report at most once a second */
-       if ((print_timestamp >= touch_timestamp &&
-                       print_timestamp < (touch_timestamp + 1)) ||
-                       did_panic) {
+       if (print_timestamp == touch_timestamp || did_panic)
                return;
-       }
 
        /* do not print during early bootup: */
        if (unlikely(system_state != SYSTEM_RUNNING)) {