aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/include/linux/workqueue.h
diff options
context:
space:
mode:
authorJingoo Han <jg1.han@samsung.com>2014-05-14 13:43:37 +0900
committerTejun Heo <tj@kernel.org>2014-05-14 13:11:23 -0400
commit1a56f2aa4752293e5a9c0c3a2331620aa1fdb808 (patch)
tree06a5a9af853aee081e2d69669753452d98a03eff /include/linux/workqueue.h
parentkernel/workqueue.c: pr_warning/pr_warn & printk/pr_info (diff)
downloadwireguard-linux-1a56f2aa4752293e5a9c0c3a2331620aa1fdb808.tar.xz
wireguard-linux-1a56f2aa4752293e5a9c0c3a2331620aa1fdb808.zip
workqueue: Remove deprecated flush[_delayed]_work_sync()
flush[_delayed]_work_sync() were deprecated by 4382973 ("workqueue: deprecate flush[_delayed]_work_sync()") and have been deprecated for a long time. In addition, these are not used anymore. So, let's remove these functions. Signed-off-by: Jingoo Han <jg1.han@samsung.com> Signed-off-by: Tejun Heo <tj@kernel.org>
Diffstat (limited to 'include/linux/workqueue.h')
-rw-r--r--include/linux/workqueue.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/include/linux/workqueue.h b/include/linux/workqueue.h
index 1b22c42e9c2d..aa92d0295e28 100644
--- a/include/linux/workqueue.h
+++ b/include/linux/workqueue.h
@@ -587,18 +587,6 @@ static inline bool keventd_up(void)
return system_wq != NULL;
}
-/* used to be different but now identical to flush_work(), deprecated */
-static inline bool __deprecated flush_work_sync(struct work_struct *work)
-{
- return flush_work(work);
-}
-
-/* used to be different but now identical to flush_delayed_work(), deprecated */
-static inline bool __deprecated flush_delayed_work_sync(struct delayed_work *dwork)
-{
- return flush_delayed_work(dwork);
-}
-
#ifndef CONFIG_SMP
static inline long work_on_cpu(int cpu, long (*fn)(void *), void *arg)
{