From: Willem Jan Withagen Date: Thu, 26 Nov 2020 13:02:41 +0000 (+0100) Subject: blk: fix parameters for non native uring X-Git-Tag: v16.1.0~468^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F38306%2Fhead;p=ceph.git 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 --- 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); }