Re: [PATCH 3/9] pci/switchtec: Don't abuse completion wait queue for poll

From: Logan Gunthorpe
Date: Mon Mar 16 2020 - 17:54:03 EST




On 2020-03-16 1:34 p.m., Thomas Gleixner wrote:
> Logan Gunthorpe <logang@xxxxxxxxxxxx> writes:
>> On 2020-03-13 11:46 a.m., Sebastian Andrzej Siewior wrote:
>>> 1) It cannot work with EPOLLEXCLUSIVE
>>
>> Why? You don't explain this.
>
> man epoll_ctt(2)
>
> EPOLLEXCLUSIVE (since Linux 4.5)
>
> Sets an exclusive wakeup mode for the epoll file descriptor that is
> being attached to the target file descriptor, fd. When a wakeup event
> occurs and multiple epoll file descriptors are attached to the same
> target file using EPOLLEXCLUSIVE, one or more of the epoll file
> descriptors will receive an event with epoll_wait(2).
>
> As this uses complete_all() there is no distinction possible, because
> complete_all() wakes up everything.
>
>> And I don't see how this patch would change anything to do with the
>> call to poll_wait(). All you've done is open-code the completion.
>
> wake_up_interruptible(x) resolves to:
>
> __wake_up(x, TASK_INTERRUPTIBLE, 1, NULL)
>
> which wakes exactly 1 exclusive waiter.
>
> Also the other way round is just working because the waker side uses
> complete_all(). Why? Because completion internally defaults to exclusive
> mode and complete() wakes exactly one exlusive waiter.
>
> There is a conceptual difference and while it works for that particular
> purpose to some extent it's not suitable as a general wait notification
> construct.

Ok, I now understand this point. That's exceedingly subtle.

I certainly would not agree that this qualifies as "seriously broken",
and I'm not even sure I'd agree that this actually violates the
semantics of poll() seeing the man page clearly states that with
EPOLLEXCLUSIVE set, "one or more" pollers will be woken up. So waking up
all of them is still allowed. Ensuring fewer pollers wake up is just an
optimization to avoid the thundering herd problem which users of this
interface are very unlikely to ever have (I can confidently tell you
that none have this problem now).

If we do want to say that all poll_wait() users *must* respect
EPOLLEXCLUSIVE, we should at least have some documentation saying that
combining poll_wait() with wake_up_all() (or similar) is not allowed. A
*very* quick check finds there's at least a few drivers doing this:

drivers/char/ipmi/ipmb_dev_int.c
drivers/dma-buf/sync_file.c
drivers/gpu/vga/vgaarb.c

(That's just looking at the drivers tree, up to "G".)

Finally, since we seem to back to more reasonable discussion, I will
make this point: it's fairly common for wait queue users to directly use
the spinlock from within wait_queue_head_t without an interface (even
completion.c does it). How are developers supposed to know when an
interface is required and when it's not? Sometimes using
"implementation" details interface-free is standard practice, but other
times it's "yuck" and will illicit ire from other developers? Is it
valid to use completion.wait.lock? Where's the line?

Logan