[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <20230508070825.3659621-1-arnd@kernel.org>
Date: Mon, 8 May 2023 09:08:18 +0200
From: Arnd Bergmann <arnd@...nel.org>
To: Jens Axboe <axboe@...nel.dk>, Keith Busch <kbusch@...nel.org>,
Breno Leitao <leitao@...ian.org>,
Pavel Begunkov <asml.silence@...il.com>
Cc: Arnd Bergmann <arnd@...db.de>, Kanchan Joshi <joshi.k@...sung.com>,
Anuj Gupta <anuj20.g@...sung.com>,
Geert Uytterhoeven <geert+renesas@...der.be>,
io-uring@...r.kernel.org, linux-kernel@...r.kernel.org
Subject: [PATCH] io_uring: add dummy io_uring_sqe_cmd() helper
From: Arnd Bergmann <arnd@...db.de>
When CONFIG_IO_URING is disabled, the NVMe host support fails to build:
drivers/nvme/host/ioctl.c: In function 'nvme_uring_cmd_io':
drivers/nvme/host/ioctl.c:555:44: error: implicit declaration of function 'io_uring_sqe_cmd'; did you mean 'io_uring_free'? [-Werror=implicit-function-declaration]
555 | const struct nvme_uring_cmd *cmd = io_uring_sqe_cmd(ioucmd->sqe);
| ^~~~~~~~~~~~~~~~
| io_uring_free
Add a dummy function like the other interfaces for this configuration.
Fixes: fd9b8547bc5c ("io_uring: Pass whole sqe to commands")
Signed-off-by: Arnd Bergmann <arnd@...db.de>
---
include/linux/io_uring.h | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/include/linux/io_uring.h b/include/linux/io_uring.h
index 3399d979ee1c..ec1dbd9e2599 100644
--- a/include/linux/io_uring.h
+++ b/include/linux/io_uring.h
@@ -102,6 +102,10 @@ static inline const char *io_uring_get_opcode(u8 opcode)
{
return "";
}
+static inline const void *io_uring_sqe_cmd(const struct io_uring_sqe *sqe)
+{
+ return NULL;
+}
#endif
#endif
--
2.39.2
Powered by blists - more mailing lists