On 02/08, Andrew Morton wrote: > > On Thu, 8 Feb 2007 11:35:39 +0300 Oleg Nesterov <[EMAIL PROTECTED]> wrote: > > > Andrew, do you think it is worth to tweak delayed works so it would be > > possible to use flush_work(dwork->work) ? > > > > I've completely lost track of what you've been doing in there (this is a > problem) but sure, if the patch isn't too horrid it's always better to be > robust in the core than to have to work around inadequacies in the callers.
It is not so obvious to me what should be done. Note that this problem is not connected to recent changes, there were (I hope) completely transparent for the delayed works. The comment for cancel_delayed_work() work says Note that the work callback function may still be running on return from cancel_delayed_work(). Run flush_scheduled_work() or flush_work() to wait on it. The same is true for cancel_rearming_delayed_work(), but not documented. Note also that the comment above is wrong, we can't use flush_work(dwork->work), it was never supposed to do because queue_delayed_work() use work->data "wrongly". Now, - We can change cancel_rearming_delayed_work() so it does a final flush_workqueue(). But this means that 2 flavors of cancel delayed work will have a subtle difference. OR - Document the fact that cancel_rearming_delayed_work() doesn't garantee that ->func() is not running upon return, fix affected callers. Finally, we can also tweak delaed_works so it will actually be possible to use flush_work(dwork->work) after cancel_{,rearming_}delayed_work(). Seems to make sense, but needs (hopefully not too horrid) changes. And other problems. Currently cancel_rearming_delayed_work(dwork) will hang if dwork was never scheduled, or cancel_rearming_delayed_work() was already called before. The first problem is solved by this patch, the second is still here. The fix is simple _unless_ we are going to implement "flush_work() works on dwork->work" above. Oh, I can't make a decision, please tell me... Oleg. - 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/