On Sat, Mar 16, 2024 at 02:54:19AM +0000, Pavel Begunkov wrote: > On 3/16/24 02:24, Ming Lei wrote: > > On Sat, Mar 16, 2024 at 10:04 AM Ming Lei <ming.lei@xxxxxxxxxx> wrote: > > > > > > On Fri, Mar 15, 2024 at 04:53:21PM -0600, Jens Axboe wrote: > > > > > > > > On Fri, 15 Mar 2024 15:29:50 +0000, Pavel Begunkov wrote: > > > > > Patch 1 is a fix. > > > > > > > > > > Patches 2-7 are cleanups mainly dealing with issue_flags conversions, > > > > > misundertsandings of the flags and of the tw state. It'd be great to have > > > > > even without even w/o the rest. > > > > > > > > > > 8-11 mandate ctx locking for task_work and finally removes the CQE > > > > > caches, instead we post directly into the CQ. Note that the cache is > > > > > used by multishot auxiliary completions. > > > > > > > > > > [...] > > > > > > > > Applied, thanks! > > > > > > Hi Jens and Pavel, > > > > > > Looks this patch causes hang when running './check ublk/002' in blktests. > > > > Not take close look, and I guess it hangs in > > > > io_uring_cmd_del_cancelable() -> io_ring_submit_lock > > Thanks, the trace doesn't completely explains it, but my blind spot > was io_uring_cmd_done() potentially grabbing the mutex. They're > supposed to be irq safe mimicking io_req_task_work_add(), that's how > nvme passthrough uses it as well (but at least it doesn't need the > cancellation bits). > > One option is to replace it with a spinlock, the other is to delay > the io_uring_cmd_del_cancelable() call to the task_work callback. > The latter would be cleaner and more preferable, but I'm lacking > context to tell if that would be correct. Ming, what do you think? I prefer to the latter approach because the two cancelable helpers are run in fast path. Looks all new io_uring_cmd_complete() in ublk have this issue, and the following patch should avoid them all. diff --git a/drivers/block/ublk_drv.c b/drivers/block/ublk_drv.c index 97dceecadab2..1f54da0e655c 100644 --- a/drivers/block/ublk_drv.c +++ b/drivers/block/ublk_drv.c @@ -1417,6 +1417,12 @@ static bool ublk_abort_requests(struct ublk_device *ub, struct ublk_queue *ubq) return true; } +static void ublk_cancel_cmd_cb(struct io_uring_cmd *cmd, + unsigned int issue_flags) +{ + io_uring_cmd_done(cmd, UBLK_IO_RES_ABORT, 0, issue_flags); +} + static void ublk_cancel_cmd(struct ublk_queue *ubq, struct ublk_io *io) { bool done; @@ -1431,7 +1437,7 @@ static void ublk_cancel_cmd(struct ublk_queue *ubq, struct ublk_io *io) spin_unlock(&ubq->cancel_lock); if (!done) - io_uring_cmd_complete(io->cmd, UBLK_IO_RES_ABORT, 0); + io_uring_cmd_complete_in_task(io->cmd, ublk_cancel_cmd_cb); } /* @@ -1775,10 +1781,9 @@ static int __ublk_ch_uring_cmd(struct io_uring_cmd *cmd, return -EIOCBQUEUED; out: - io_uring_cmd_complete(cmd, ret, 0); pr_devel("%s: complete: cmd op %d, tag %d ret %x io_flags %x\n", __func__, cmd_op, tag, ret, io->flags); - return -EIOCBQUEUED; + return ret; } static inline struct request *__ublk_check_and_get_req(struct ublk_device *ub, @@ -2928,10 +2933,9 @@ static int ublk_ctrl_uring_cmd(struct io_uring_cmd *cmd, if (ub) ublk_put_device(ub); out: - io_uring_cmd_complete(cmd, ret, 0); pr_devel("%s: cmd done ret %d cmd_op %x, dev id %d qid %d\n", __func__, ret, cmd->cmd_op, header->dev_id, header->queue_id); - return -EIOCBQUEUED; + return ret; } static const struct file_operations ublk_ctl_fops = { Thanks, Ming