]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
blk: fix parameters for non native uring 38306/head
authorWillem Jan Withagen <wjw@digiware.nl>
Thu, 26 Nov 2020 13:02:41 +0000 (14:02 +0100)
committerWillem Jan Withagen <wjw@digiware.nl>
Thu, 26 Nov 2020 13:04:22 +0000 (14:04 +0100)
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 <wjw@digiware.nl>
src/blk/kernel/io_uring.cc

index 67960c1c57fb4289fa9c16fda08527340f2bce48..3eb7a2d831d756f13754b2c5c9188d76c2ea253f 100644 (file)
@@ -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);
 }