From: Jens Axboe Date: Thu, 25 Aug 2022 17:19:34 +0000 (-0600) Subject: engines/io_uring: delete debug code X-Git-Tag: fio-3.32~11 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=c27ae7ae6c3d9108bba80ff71cf36bf7fc8b34c9;p=fio.git engines/io_uring: delete debug code This was inadvertently introduced by a previous commit, get rid of it. Fixes: 1816895b788e ("engines/io_uring: pass back correct error value when interrupted") Signed-off-by: Jens Axboe --- diff --git a/engines/io_uring.c b/engines/io_uring.c index 89d64b06..94376efa 100644 --- a/engines/io_uring.c +++ b/engines/io_uring.c @@ -445,18 +445,12 @@ static struct io_u *fio_ioring_event(struct thread_data *td, int event) struct io_uring_cqe *cqe; struct io_u *io_u; unsigned index; - static int eio; index = (event + ld->cq_ring_off) & ld->cq_ring_mask; cqe = &ld->cq_ring.cqes[index]; io_u = (struct io_u *) (uintptr_t) cqe->user_data; - if (eio++ == 5) { - printf("mark EIO\n"); - cqe->res = -EIO; - } - if (cqe->res != io_u->xfer_buflen) { if (cqe->res > io_u->xfer_buflen) io_u->error = -cqe->res;