Commit 12db2584 authored by Andrew Morton's avatar Andrew Morton Committed by Linus Torvalds

[PATCH] blk_start_queue() should use kblockd

kblockd is the thread which runs unplug functions, not keventd.
parent d137ab48
......@@ -1206,7 +1206,7 @@ void blk_start_queue(request_queue_t *q)
clear_bit(QUEUE_FLAG_REENTER, &q->queue_flags);
} else {
blk_plug_device(q);
schedule_work(&q->unplug_work);
kblockd_schedule_work(&q->unplug_work);
}
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment