From d9e6298edb0bc6533c22f7e95e613189abe89c99 Mon Sep 17 00:00:00 2001 From: David Teigland Date: Thu, 8 Feb 2018 10:10:31 -0600 Subject: [PATCH] [device/bcache] fix missing max_io fn in bcache async engine --- lib/device/bcache.c | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/lib/device/bcache.c b/lib/device/bcache.c index dce05efe5..cea4db406 100644 --- a/lib/device/bcache.c +++ b/lib/device/bcache.c @@ -134,6 +134,7 @@ struct async_engine { struct io_engine e; io_context_t aio_context; struct cb_set *cbs; + unsigned max_io; }; static struct async_engine *_to_async(struct io_engine *e) @@ -233,6 +234,12 @@ static bool _async_wait(struct io_engine *ioe, io_complete_fn fn) return true; } +static unsigned _async_max_io(struct io_engine *ioe) +{ + struct async_engine *e = _to_async(ioe); + return e->max_io; +} + struct io_engine *create_async_io_engine(unsigned max_io) { int r; @@ -241,9 +248,12 @@ struct io_engine *create_async_io_engine(unsigned max_io) if (!e) return NULL; + e->max_io = max_io; + e->e.destroy = _async_destroy; e->e.issue = _async_issue; e->e.wait = _async_wait; + e->e.max_io = _async_max_io; e->aio_context = 0; r = io_setup(max_io, &e->aio_context);