From ac9dfa3f8204ea64c637c974816883c3981b2c60 Mon Sep 17 00:00:00 2001 From: Willem Jan Withagen Date: Thu, 26 Nov 2020 14:02:41 +0100 Subject: [PATCH] blk: fix parameters for non native uring The parameterlist used when uring is availble needs to be equal to the case where no uring is available. fixes: https://github.com/ceph/ceph/pull/38257 Signed-off-by: Willem Jan Withagen --- src/blk/kernel/io_uring.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/blk/kernel/io_uring.cc b/src/blk/kernel/io_uring.cc index 67960c1c57fb..3eb7a2d831d7 100644 --- a/src/blk/kernel/io_uring.cc +++ b/src/blk/kernel/io_uring.cc @@ -221,7 +221,7 @@ bool ioring_queue_t::supported() struct ioring_data {}; -ioring_queue_t::ioring_queue_t(unsigned iodepth_) +ioring_queue_t::ioring_queue_t(unsigned iodepth_, bool hipri_, bool sq_thread_) { ceph_assert(0); } -- 2.47.3