X-Git-Url: https://git.kernel.dk/?p=fio.git;a=blobdiff_plain;f=engines%2Fbinject.c;h=932534a03987eb85fbe1241f35944a4fc287dbed;hp=f78d8559a84572f7866073204002d3fb62139051;hb=97900ebfb0192130823dce8aa8f36916313a1c18;hpb=42634d2118b41f26151f5b708e83d40061570653 diff --git a/engines/binject.c b/engines/binject.c index f78d8559..932534a0 100644 --- a/engines/binject.c +++ b/engines/binject.c @@ -62,14 +62,14 @@ static int pollin_events(struct pollfd *pfds, int fds) static unsigned int binject_read_commands(struct thread_data *td, void *p, int left, int *err) { - struct binject_file *bf; struct fio_file *f; int i, ret, events; one_more: events = 0; for_each_file(td, f, i) { - bf = (void *) f->engine_data; + struct binject_file *bf = FILE_ENG_DATA(f); + ret = read(bf->fd, p, left * sizeof(struct b_user_cmd)); if (ret < 0) { if (errno == EAGAIN) @@ -91,28 +91,29 @@ one_more: } static int fio_binject_getevents(struct thread_data *td, unsigned int min, - unsigned int max, struct timespec fio_unused *t) + unsigned int max, + const struct timespec fio_unused *t) { - struct binject_data *bd = td->io_ops->data; + struct binject_data *bd = td->io_ops_data; int left = max, ret, r = 0, ev_index = 0; void *buf = bd->cmds; unsigned int i, events; struct fio_file *f; - struct binject_file *bf; /* * Fill in the file descriptors */ for_each_file(td, f, i) { - bf = (void *) f->engine_data; + struct binject_file *bf = FILE_ENG_DATA(f); /* * don't block for min events == 0 */ - if (!min) { - bd->fd_flags[i] = fcntl(bf->fd, F_GETFL); - fcntl(bf->fd, F_SETFL, bd->fd_flags[i] | O_NONBLOCK); - } + if (!min) + bd->fd_flags[i] = fio_set_fd_nonblocking(bf->fd, "binject"); + else + bd->fd_flags[i] = -1; + bd->pfds[i].fd = bf->fd; bd->pfds[i].events = POLLIN; } @@ -153,8 +154,13 @@ static int fio_binject_getevents(struct thread_data *td, unsigned int min, if (!min) { for_each_file(td, f, i) { - bf = (void *) f->engine_data; - fcntl(bf->fd, F_SETFL, bd->fd_flags[i]); + struct binject_file *bf = FILE_ENG_DATA(f); + + if (bd->fd_flags[i] == -1) + continue; + + if (fcntl(bf->fd, F_SETFL, bd->fd_flags[i]) < 0) + log_err("fio: binject failed to restore fcntl flags: %s\n", strerror(errno)); } } @@ -167,7 +173,7 @@ static int fio_binject_getevents(struct thread_data *td, unsigned int min, static int fio_binject_doio(struct thread_data *td, struct io_u *io_u) { struct b_user_cmd *buc = &io_u->buc; - struct binject_file *bf = (void *) io_u->file->engine_data; + struct binject_file *bf = FILE_ENG_DATA(io_u->file); int ret; ret = write(bf->fd, buc, sizeof(*buc)); @@ -179,9 +185,9 @@ static int fio_binject_doio(struct thread_data *td, struct io_u *io_u) static int fio_binject_prep(struct thread_data *td, struct io_u *io_u) { - struct binject_data *bd = td->io_ops->data; + struct binject_data *bd = td->io_ops_data; struct b_user_cmd *buc = &io_u->buc; - struct binject_file *bf = (void *) io_u->file->engine_data; + struct binject_file *bf = FILE_ENG_DATA(io_u->file); if (io_u->xfer_buflen & (bf->bs - 1)) { log_err("read/write not sector aligned\n"); @@ -228,7 +234,7 @@ static int fio_binject_queue(struct thread_data *td, struct io_u *io_u) static struct io_u *fio_binject_event(struct thread_data *td, int event) { - struct binject_data *bd = td->io_ops->data; + struct binject_data *bd = td->io_ops_data; return bd->events[event]; } @@ -323,12 +329,12 @@ err_unmap: static int fio_binject_close_file(struct thread_data *td, struct fio_file *f) { - struct binject_file *bf = (void *) f->engine_data; + struct binject_file *bf = FILE_ENG_DATA(f); if (bf) { binject_unmap_dev(td, bf); free(bf); - f->engine_data = 0; + FILE_SET_ENG_DATA(f, NULL); return generic_close_file(td, f); } @@ -345,7 +351,7 @@ static int fio_binject_open_file(struct thread_data *td, struct fio_file *f) if (ret) return 1; - if (f->filetype != FIO_TYPE_BD) { + if (f->filetype != FIO_TYPE_BLOCK) { log_err("fio: binject only works with block devices\n"); goto err_close; } @@ -357,7 +363,7 @@ static int fio_binject_open_file(struct thread_data *td, struct fio_file *f) bf = malloc(sizeof(*bf)); bf->bs = bs; bf->minor = bf->fd = -1; - f->engine_data = (uint64_t) bf; + FILE_SET_ENG_DATA(f, bf); if (binject_map_dev(td, bf, f->fd)) { err_close: @@ -370,7 +376,7 @@ err_close: static void fio_binject_cleanup(struct thread_data *td) { - struct binject_data *bd = td->io_ops->data; + struct binject_data *bd = td->io_ops_data; if (bd) { free(bd->events); @@ -400,7 +406,7 @@ static int fio_binject_init(struct thread_data *td) bd->fd_flags = malloc(sizeof(int) * td->o.nr_files); memset(bd->fd_flags, 0, sizeof(int) * td->o.nr_files); - td->io_ops->data = bd; + td->io_ops_data = bd; return 0; }