After reading this and earlier threads about phylib's way of using workqueue I think such a lighter and safer wrt. locking alternative for flush_scheduled_work should be useful, but maybe it's only my imagination.
So, let's ask Oleg Nesterov, whose solutions are here only copy-cut-pasted & possibly abused by myslef. ---------> Subject: flush_work_sync as an alternative for flush_scheduled_work Similar to cancel_work_sync() but will only busy wait & block (without cancel). Signed-off-by: Jarek Poplawski <[EMAIL PROTECTED]> --- include/linux/workqueue.h | 1 + kernel/workqueue.c | 24 ++++++++++++++++++++++++ 2 files changed, 25 insertions(+) diff -Nurp 2.6.23-mm1-/include/linux/workqueue.h 2.6.23-mm1/include/linux/workqueue.h --- 2.6.23-mm1-/include/linux/workqueue.h 2007-10-12 23:45:24.000000000 +0200 +++ 2.6.23-mm1/include/linux/workqueue.h 2007-10-17 20:55:26.000000000 +0200 @@ -192,6 +192,7 @@ extern void init_workqueues(void); int execute_in_process_context(work_func_t fn, struct execute_work *); extern int cancel_work_sync(struct work_struct *work); +extern void flush_work_sync(struct work_struct *work); /* * Kill off a pending schedule_delayed_work(). Note that the work callback diff -Nurp 2.6.23-mm1-/kernel/workqueue.c 2.6.23-mm1/kernel/workqueue.c --- 2.6.23-mm1-/kernel/workqueue.c 2007-10-12 23:45:25.000000000 +0200 +++ 2.6.23-mm1/kernel/workqueue.c 2007-10-17 20:54:03.000000000 +0200 @@ -539,6 +539,30 @@ int cancel_delayed_work_sync(struct dela } EXPORT_SYMBOL(cancel_delayed_work_sync); +/** + * flush_work_sync - block until a work_struct's callback has terminated + * @work: the work which is to be flushed + * + * Similar to cancel_work_sync() but will only busy wait (without cancel) + * if the work is queued. If the work's callback appears to be running, + * flush_work_sync() will block until it has completed (but doesn't block + * while other callbacks are running, like flush_scheduled_work() does). + * + * It is not allowed to use this function if the work re-queues itself. + */ +void flush_work_sync(struct work_struct *work) +{ + int ret; + + do { + ret = work_pending(work); + wait_on_work(work); + if (ret) + cpu_relax(); + } while (ret); +} +EXPORT_SYMBOL(flush_work_sync); + static struct workqueue_struct *keventd_wq __read_mostly; /** - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/