1. 12 Apr, 2021 2 commits
    • Jens Axboe's avatar
      task_work: add helper for more targeted task_work canceling · c7aab1a7
      Jens Axboe authored
      The only exported helper we have right now is task_work_cancel(), which
      cancels any task_work from a given task where func matches the queued
      work item. This is a bit too coarse for some use cases. Add a
      task_work_cancel_match() that allows to more specifically target
      individual work items outside of purely the callback function used.
      
      task_work_cancel() can be trivially implemented on top of that, hence do
      so.
      Reviewed-by: default avatarOleg Nesterov <oleg@redhat.com>
      Signed-off-by: default avatarJens Axboe <axboe@kernel.dk>
      c7aab1a7
    • Jens Axboe's avatar
      io_uring: fix race around poll update and poll triggering · b2e720ac
      Jens Axboe authored
      Joakim reports that in some conditions he sees a multishot poll request
      being canceled, and that it coincides with getting -EALREADY on
      modification. As part of the poll update procedure, there's a small window
      where the request is marked as canceled, and if this coincides with the
      event actually triggering, then we can get a spurious -ECANCELED and
      termination of the multishot request.
      
      Don't mark the poll request as being canceled for update. We also don't
      care if we race on removal unless it's a one-shot request, we can safely
      updated for either case.
      
      Fixes: b69de288 ("io_uring: allow events and user_data update of running poll requests")
      Reported-by: default avatarJoakim Hassila <joj@mac.com>
      Signed-off-by: default avatarJens Axboe <axboe@kernel.dk>
      b2e720ac
  2. 11 Apr, 2021 38 commits