lkml.org 
[lkml]   [2016]   [Feb]   [19]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
Date
From
SubjectRe: [PATCH v4 09/22] kthread: Allow to cancel kthread work
On Mon 2016-01-25 14:17:09, Tejun Heo wrote:
> On Mon, Jan 25, 2016 at 04:44:58PM +0100, Petr Mladek wrote:
> > +static bool __cancel_kthread_work_sync(struct kthread_work *work)
[...]
> > + work->canceling++;
> > + ret = try_to_cancel_kthread_work(work, &worker->lock, &flags);
> > +
> > + if (worker->current_work != work)
> > + goto out_fast;
>
> If there are two racing cancellers, wouldn't this allow the losing one
> to return while the work item is still running?

If the work is running, worker->current_work must point to it.
All cancelers will see it and queue its own kthread_flush_work.
It is a bit sub-optimal but it is trivial. I doubt that there
will be many parallel cancelers in practice.

> > + spin_unlock_irqrestore(&worker->lock, flags);
> > + flush_kthread_work(work);
> > + /*
> > + * Nobody is allowed to switch the worker or queue the work
> > + * when .canceling is set.
> > + */
> > + spin_lock_irqsave(&worker->lock, flags);
> > +
> > +out_fast:
> > + work->canceling--;
> > + spin_unlock_irqrestore(&worker->lock, flags);
> > +out:
> > + return ret;

Best Regards,
Petr

PS: I have updated the patchset according to your other comments.
In addition, I got rid of many try_lock games. We do not allow
to queue the same work to different workers. Therefore it should
be enough to warn if the worker changes unexpectedly. It makes
the code even more simple. I still need to do some testing.
I will send it next week, hopefully.

\
 
 \ /
  Last update: 2016-02-19 18:01    [W:0.165 / U:0.116 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site