The following changes since commit 1727951019202ef3229167c07813598d485b5b06: Fio 1.41.3 (2010-06-21 21:08:47 +0200) are available in the git repository at: git://git.kernel.dk/fio.git master Jens Axboe (2): Add off64_t to FreeBSD posixaio: return any ready event in ->getevents() engines/posixaio.c | 3 --- os/os-freebsd.h | 2 ++ 2 files changed, 2 insertions(+), 3 deletions(-) --- Diff of recent changes: diff --git a/engines/posixaio.c b/engines/posixaio.c index 7098d72..4c39a77 100644 --- a/engines/posixaio.c +++ b/engines/posixaio.c @@ -124,9 +124,6 @@ restart: io_u->resid = io_u->xfer_buflen - retval; } else io_u->error = err; - - if (r >= max) - break; } if (r >= min) diff --git a/os/os-freebsd.h b/os/os-freebsd.h index d1313e8..44b6060 100644 --- a/os/os-freebsd.h +++ b/os/os-freebsd.h @@ -11,6 +11,8 @@ #define OS_MAP_ANON MAP_ANON +typedef off_t off64_t; + static inline int blockdev_invalidate_cache(int fd) { return EINVAL; -- 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