io_uring/poll: improve readability of poll reference decrementing
authorJens Axboe <axboe@kernel.dk>
Thu, 1 Feb 2024 19:49:37 +0000 (12:49 -0700)
committerJens Axboe <axboe@kernel.dk>
Thu, 8 Feb 2024 20:27:06 +0000 (13:27 -0700)
commit3cdc4be114a9be61b7041a53e44aa71718a7cf28
tree4e007ceeaa5394b5f3bbe77de4fe21f6152c93d6
parent9fe3eaea4a3530ca34a8d8ff00b1848c528789ca
io_uring/poll: improve readability of poll reference decrementing

This overly long line is hard to read. Break it up by AND'ing the
ref mask first, then perform the atomic_sub_return() with the value
itself.

Signed-off-by: Jens Axboe <axboe@kernel.dk>
io_uring/poll.c