The following changes since commit 0508320e7b175baf336b1f559e13810e69eecb10: Kill leftover debug printf() and re-format a long line (2010-09-23 08:48:15 +0200) are available in the git repository at: git://git.kernel.dk/fio.git master Jens Axboe (2): Don't add the file offset twice for trim Fio 1.44-rc1 init.c | 2 +- ioengines.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) --- Diff of recent changes: diff --git a/init.c b/init.c index fe4dbf2..cc4037a 100644 --- a/init.c +++ b/init.c @@ -22,7 +22,7 @@ #include "lib/getopt.h" -static char fio_version_string[] = "fio 1.43.2"; +static char fio_version_string[] = "fio 1.44-rc1"; #define FIO_RANDSEED (0xb1899bedUL) diff --git a/ioengines.c b/ioengines.c index 7df0aba..e0b0f22 100644 --- a/ioengines.c +++ b/ioengines.c @@ -489,7 +489,7 @@ int do_io_u_trim(struct thread_data *td, struct io_u *io_u) struct fio_file *f = io_u->file; int ret; - ret = os_trim(f->fd, io_u->offset + f->file_offset, io_u->xfer_buflen); + ret = os_trim(f->fd, io_u->offset, io_u->xfer_buflen); if (!ret) return io_u->xfer_buflen;; -- To unsubscribe from this list: send the line "unsubscribe fio" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html