X-Git-Url: https://git.kernel.dk/?a=blobdiff_plain;f=engines%2Fsplice.c;h=6fc36bb6f154ef6cd439dd4bd653fe71ffdfd3c0;hb=379e5f09a16f789f3d15ff5541a42e1e74d2b383;hp=d5d8ab0ebafdac9cdc1c6ebd3617109f97adc13a;hpb=c049b36e29ffa1c6005e34c174896d180d2aa682;p=fio.git diff --git a/engines/splice.c b/engines/splice.c index d5d8ab0e..6fc36bb6 100644 --- a/engines/splice.c +++ b/engines/splice.c @@ -9,8 +9,7 @@ #include #include #include -#include -#include +#include #include #include "../fio.h" @@ -200,7 +199,8 @@ static int fio_splice_write(struct thread_data *td, struct io_u *io_u) return io_u->xfer_buflen; } -static int fio_spliceio_queue(struct thread_data *td, struct io_u *io_u) +static enum fio_q_status fio_spliceio_queue(struct thread_data *td, + struct io_u *io_u) { struct spliceio_data *sd = td->io_ops_data; int ret = 0; @@ -278,13 +278,6 @@ static int fio_spliceio_init(struct thread_data *td) */ sd->vmsplice_to_user_map = 1; - /* - * And if vmsplice_to_user works, we definitely need aligned - * buffers. Just set ->odirect to force that. - */ - if (td_read(td)) - td->o.mem_align = 1; - td->io_ops_data = sd; return 0; }