commit | e64d66c8edf11629aa203328daf898775ee27dd4 | [log] [tgz] |
---|---|---|
author | Matthew Wilcox <matthew@wil.cx> | Thu Dec 06 17:34:36 2007 -0500 |
committer | Matthew Wilcox <willy@linux.intel.com> | Thu Dec 06 17:34:36 2007 -0500 |
tree | 3b91bfac6774079eff7707214645f75a1484f20a | |
parent | 6d8982d9b8f4b771754335f1398e406cc72003c3 [diff] [blame] |
wait: Use TASK_NORMAL Also move wake_up_locked() to be with the related functions Signed-off-by: Matthew Wilcox <willy@linux.intel.com>
diff --git a/kernel/wait.c b/kernel/wait.c index 444ddbf..f987688 100644 --- a/kernel/wait.c +++ b/kernel/wait.c
@@ -215,7 +215,7 @@ { struct wait_bit_key key = __WAIT_BIT_KEY_INITIALIZER(word, bit); if (waitqueue_active(wq)) - __wake_up(wq, TASK_INTERRUPTIBLE|TASK_UNINTERRUPTIBLE, 1, &key); + __wake_up(wq, TASK_NORMAL, 1, &key); } EXPORT_SYMBOL(__wake_up_bit);