Re: [PATCH 1/2] workqueue: skip lockdep wq dependency in cancel_work_sync()

From: Johannes Berg
Date: Wed Aug 22 2018 - 03:07:37 EST


On Wed, 2018-08-22 at 14:47 +0900, Byungchul Park wrote:
> On Wed, Aug 22, 2018 at 06:02:23AM +0200, Johannes Berg wrote:
> > On Wed, 2018-08-22 at 11:45 +0900, Byungchul Park wrote:
> >
> > > That should've been adjusted as well when Ingo reverted Cross-release.
> >
> > I can't really say.
>
> What do you mean?

I haven't followed any of this, so I just don't know.

> > > It would be much easier to add each pair, acquire/release, before
> > > wait_for_completion() in both flush_workqueue() and flush_work() than
> > > reverting the whole commit.
> >
> > The commit doesn't do much more than this though.
>
> That also has named of lockdep_map for wq/work in a better way.

What do you mean?

> > > What's lacking is only lockdep annotations for wait_for_completion().
> >
> > No, I disagree. Like I said before, we need the lockdep annotations on
>
> You seem to be confused. I was talking about wait_for_completion() in
> both flush_workqueue() and flush_work(). Without
> the wait_for_completion()s, nothing matters wrt what you are concerning.

Yes and no.

You're basically saying if we don't get to do a wait_for_completion(),
then we don't need any lockdep annotation. I'm saying this isn't true.

Consider the following case:

work_function()
{
mutex_lock(&mutex);
mutex_unlock(&mutex);
}

other_function()
{
queue_work(&my_wq, &work);

if (common_case) {
schedule_and_wait_for_something_that_takes_a_long_time()
}

mutex_lock(&mutex);
flush_workqueue(&my_wq);
mutex_unlock(&mutex);
}


Clearly this code is broken, right?

However, you'll almost never get lockdep to indicate that, because of
the "if (common_case)".

My argument basically is that the lockdep annotations in the workqueue
code should be entirely independent of the actual need to call
wait_for_completion().

Therefore, the commit should be reverted regardless of any cross-release
work (that I neither know and thus don't understand right now), since it
makes workqueue code rely on lockdep for the completion, whereas we
really want to have annotations here even when we didn't actually need
to wait_for_completion().

johannes