summaryrefslogtreecommitdiff
path: root/kernel
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2012-10-24 16:33:22 -0700
committerLinus Torvalds <torvalds@linux-foundation.org>2012-10-24 16:33:22 -0700
commitd579a35d0e488770ec6fbe0ce5efe8a797cada2f (patch)
treef556217c23857ed111240f03e599ff9c7d6e74f0 /kernel
parent0e9e3e306c7e472bdcffa34c4c4584301eda03b3 (diff)
parentc0158ca64da5732dfb86a3f28944e9626776692f (diff)
downloadlinux-3.10-d579a35d0e488770ec6fbe0ce5efe8a797cada2f.tar.gz
linux-3.10-d579a35d0e488770ec6fbe0ce5efe8a797cada2f.tar.bz2
linux-3.10-d579a35d0e488770ec6fbe0ce5efe8a797cada2f.zip
Merge branch 'for-3.7-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq
Pull workqueue fix from Tejun Heo: "This pull request contains one patch from Dan Magenheimer to fix cancel_delayed_work() regression introduced by its reimplementation using try_to_grab_pending(). The reimplementation made it incorrectly return %true when the work item is idle. There aren't too many consumers of the return value but it broke at least ramster." * 'for-3.7-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq: workqueue: cancel_delayed_work() should return %false if work item is idle
Diffstat (limited to 'kernel')
-rw-r--r--kernel/workqueue.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/workqueue.c b/kernel/workqueue.c
index d951daa0ca9..042d221d33c 100644
--- a/kernel/workqueue.c
+++ b/kernel/workqueue.c
@@ -2982,7 +2982,7 @@ bool cancel_delayed_work(struct delayed_work *dwork)
set_work_cpu_and_clear_pending(&dwork->work, work_cpu(&dwork->work));
local_irq_restore(flags);
- return true;
+ return ret;
}
EXPORT_SYMBOL(cancel_delayed_work);