X-Git-Url: https://git.kernel.dk/?p=fio.git;a=blobdiff_plain;f=engines%2Fsplice.c;h=6d843538fb73bc01b0ee3e0f58701933fbddac3a;hp=59bf7e4f8ed19660d694a4ebf3de0718d27fe583;hb=b4ba5f302c467dc10c8b89459a8cb97d2958f359;hpb=bab3fd58530027a67df288783f4a70759b3c84b7 diff --git a/engines/splice.c b/engines/splice.c index 59bf7e4f..6d843538 100644 --- a/engines/splice.c +++ b/engines/splice.c @@ -48,7 +48,7 @@ static int fio_splice_read(struct thread_data *td, struct io_u *io_u) if (errno == ENODATA || errno == EAGAIN) continue; - return errno; + return -errno; } buflen -= ret; @@ -56,7 +56,7 @@ static int fio_splice_read(struct thread_data *td, struct io_u *io_u) while (ret) { ret2 = read(sd->pipe[0], p, ret); if (ret2 < 0) - return errno; + return -errno; ret -= ret2; p += ret2; @@ -90,7 +90,7 @@ static int fio_splice_write(struct thread_data *td, struct io_u *io_u) ret = vmsplice(sd->pipe[1], iov, 1, SPLICE_F_NONBLOCK); if (ret < 0) - return errno; + return -errno; iov[0].iov_len -= ret; iov[0].iov_base += ret; @@ -98,7 +98,7 @@ static int fio_splice_write(struct thread_data *td, struct io_u *io_u) while (ret) { ret2 = splice(sd->pipe[0], NULL, f->fd, &off, ret, 0); if (ret2 < 0) - return errno; + return -errno; ret -= ret2; }