x86: order variables in io_apic_xx.c
[deliverable/linux.git] / kernel / softlockup.c
index b75b492fbfcff63770bc099df2a7769fc1e26f09..cb838ee93a82000bc5b313271487836e9fb5804e 100644 (file)
@@ -233,7 +233,8 @@ static void check_hung_uninterruptible_tasks(int this_cpu)
        do_each_thread(g, t) {
                if (!--max_count)
                        goto unlock;
-               if (t->state & TASK_UNINTERRUPTIBLE)
+               /* use "==" to skip the TASK_KILLABLE tasks waiting on NFS */
+               if (t->state == TASK_UNINTERRUPTIBLE)
                        check_hung_task(t, now);
        } while_each_thread(g, t);
  unlock:
This page took 0.037443 seconds and 5 git commands to generate.