diff options
author | Dylan Yudaken <dylany@fb.com> | 2022-06-30 12:12:27 +0300 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2022-07-25 03:39:17 +0300 |
commit | a2da676376feb79224eacb9ac1f554bb3232b5de (patch) | |
tree | 82f56a9dcd4cbe0d3c777e73e95d57035107fc02 /CREDITS | |
parent | 52120f0fadcbdaaa981c19327f1865a714e85268 (diff) | |
download | linux-a2da676376feb79224eacb9ac1f554bb3232b5de.tar.xz |
io_uring: fix multishot poll on overflow
On overflow, multishot poll can still complete with the IORING_CQE_F_MORE
flag set.
If in the meantime the user clears a CQE and a the poll was cancelled then
the poll will post a CQE without the IORING_CQE_F_MORE (and likely result
-ECANCELED).
However when processing the application will encounter the non-overflow
CQE which indicates that there will be no more events posted. Typical
userspace applications would free memory associated with the poll in this
case.
It will then subsequently receive the earlier CQE which has overflowed,
which breaks the contract given by the IORING_CQE_F_MORE flag.
Signed-off-by: Dylan Yudaken <dylany@fb.com>
Link: https://lore.kernel.org/r/20220630091231.1456789-9-dylany@fb.com
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'CREDITS')
0 files changed, 0 insertions, 0 deletions