X-Git-Url: https://git.kernel.dk/?p=fio.git;a=blobdiff_plain;f=engines%2Frbd.c;h=829e41a232250a96cb0aaed401a97b7516786061;hp=5e17fbe73a7fab5cc1b04431c3df7965d76acd01;hb=e8750877dcd5b748cc7100654f9d9dff770d0c83;hpb=3c746856fd63f3f7624a34ea70e226a290d9cc01 diff --git a/engines/rbd.c b/engines/rbd.c index 5e17fbe7..829e41a2 100644 --- a/engines/rbd.c +++ b/engines/rbd.c @@ -13,6 +13,12 @@ #include #endif +#ifdef CONFIG_RBD_POLL +/* add for poll */ +#include +#include +#endif + struct fio_rbd_iou { struct io_u *io_u; rbd_completion_t completion; @@ -29,6 +35,8 @@ struct rbd_data { rbd_image_t image; struct io_u **aio_events; struct io_u **sort_events; + int fd; /* add for poll */ + bool connected; }; struct rbd_options { @@ -104,6 +112,11 @@ static int _fio_setup_rbd_data(struct thread_data *td, if (!rbd) goto failed; + rbd->connected = false; + + /* add for poll, init fd: -1 */ + rbd->fd = -1; + rbd->aio_events = calloc(td->o.iodepth, sizeof(struct io_u *)); if (!rbd->aio_events) goto failed; @@ -127,6 +140,35 @@ failed: } +#ifdef CONFIG_RBD_POLL +static bool _fio_rbd_setup_poll(struct rbd_data *rbd) +{ + int r; + + /* add for rbd poll */ + rbd->fd = eventfd(0, EFD_NONBLOCK); + if (rbd->fd < 0) { + log_err("eventfd failed.\n"); + return false; + } + + r = rbd_set_image_notification(rbd->image, rbd->fd, EVENT_TYPE_EVENTFD); + if (r < 0) { + log_err("rbd_set_image_notification failed.\n"); + close(rbd->fd); + rbd->fd = -1; + return false; + } + + return true; +} +#else +static bool _fio_rbd_setup_poll(struct rbd_data *rbd) +{ + return true; +} +#endif + static int _fio_rbd_connect(struct thread_data *td) { struct rbd_data *rbd = td->io_ops_data; @@ -188,8 +230,15 @@ static int _fio_rbd_connect(struct thread_data *td) log_err("rbd_open failed.\n"); goto failed_open; } + + if (!_fio_rbd_setup_poll(rbd)) + goto failed_poll; + return 0; +failed_poll: + rbd_close(rbd->image); + rbd->image = NULL; failed_open: rados_ioctx_destroy(rbd->io_ctx); rbd->io_ctx = NULL; @@ -205,6 +254,12 @@ static void _fio_rbd_disconnect(struct rbd_data *rbd) if (!rbd) return; + /* close eventfd */ + if (rbd->fd != -1) { + close(rbd->fd); + rbd->fd = -1; + } + /* shutdown everything */ if (rbd->image) { rbd_close(rbd->image); @@ -304,10 +359,32 @@ static int rbd_iter_events(struct thread_data *td, unsigned int *events, struct rbd_data *rbd = td->io_ops_data; unsigned int this_events = 0; struct io_u *io_u; - int i, sidx; + int i, sidx = 0; + +#ifdef CONFIG_RBD_POLL + int ret = 0; + int event_num = 0; + struct fio_rbd_iou *fri = NULL; + rbd_completion_t comps[min_evts]; + + struct pollfd pfd; + pfd.fd = rbd->fd; + pfd.events = POLLIN; + + ret = poll(&pfd, 1, -1); + if (ret <= 0) + return 0; + + assert(pfd.revents & POLLIN); + + event_num = rbd_poll_io_events(rbd->image, comps, min_evts); - sidx = 0; + for (i = 0; i < event_num; i++) { + fri = rbd_aio_get_arg(comps[i]); + io_u = fri->io_u; +#else io_u_qiter(&td->io_u_all, io_u, i) { +#endif if (!(io_u->flags & IO_U_F_FLIGHT)) continue; if (rbd_io_u_seen(io_u)) @@ -455,6 +532,10 @@ failed: static int fio_rbd_init(struct thread_data *td) { int r; + struct rbd_data *rbd = td->io_ops_data; + + if (rbd->connected) + return 0; r = _fio_rbd_connect(td); if (r) { @@ -485,13 +566,8 @@ static int fio_rbd_setup(struct thread_data *td) rbd_image_info_t info; struct fio_file *f; struct rbd_data *rbd = NULL; - int major, minor, extra; int r; - /* log version of librbd. No cluster connection required. */ - rbd_version(&major, &minor, &extra); - log_info("rbd engine: RBD version: %d.%d.%d\n", major, minor, extra); - /* allocate engine specific structure to deal with librbd. */ r = _fio_setup_rbd_data(td, &rbd); if (r) { @@ -515,13 +591,19 @@ static int fio_rbd_setup(struct thread_data *td) log_err("fio_rbd_connect failed.\n"); goto cleanup; } + rbd->connected = true; /* get size of the RADOS block device */ r = rbd_stat(rbd->image, &info, sizeof(info)); if (r < 0) { log_err("rbd_status failed.\n"); goto disconnect; + } else if (info.size == 0) { + log_err("image size should be larger than zero.\n"); + r = -EINVAL; + goto disconnect; } + dprint(FD_IO, "rbd-engine: image size: %lu\n", info.size); /* taken from "net" engine. Pretend we deal with files, @@ -539,7 +621,6 @@ static int fio_rbd_setup(struct thread_data *td) /* disconnect, then we were only connected to determine * the size of the RBD. */ - _fio_rbd_disconnect(rbd); return 0; disconnect: