blob: b4f3d0d27f8f18746f8ef4df69187ee9854f624e [file] [log] [blame]
From 85f8181d42050f8a8c9ddf6d30f621054f0e6890 Mon Sep 17 00:00:00 2001
From: Jens Axboe <axboe@kernel.dk>
Date: Thu, 25 Aug 2022 11:19:34 -0600
Subject: [PATCH] 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 <axboe@kernel.dk>
---
engines/io_uring.c | 6 ------
1 file changed, 6 deletions(-)
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;