The checked auto variable isn't doing anything in
check_hung_uninterruptible_tasks().

Signed-off-by: David Rientjes <[EMAIL PROTECTED]>
---
 kernel/softlockup.c |    5 +----
 1 files changed, 1 insertions(+), 4 deletions(-)

diff --git a/kernel/softlockup.c b/kernel/softlockup.c
--- a/kernel/softlockup.c
+++ b/kernel/softlockup.c
@@ -170,7 +170,6 @@ static void check_hung_uninterruptible_tasks(int this_cpu)
        int max_count = sysctl_hung_task_check_count;
        unsigned long now = get_timestamp(this_cpu);
        struct task_struct *g, *t;
-       int checked = 0;
 
        /*
         * If the system crashed already then all bets are off,
@@ -183,10 +182,8 @@ static void check_hung_uninterruptible_tasks(int this_cpu)
        do_each_thread(g, t) {
                if (!--max_count)
                        break;
-               if (t->state & TASK_UNINTERRUPTIBLE) {
+               if (t->state & TASK_UNINTERRUPTIBLE)
                        check_hung_task(t, now);
-                       checked++;
-               }
        } while_each_thread(g, t);
 
        read_unlock(&tasklist_lock);
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to