The following changes since commit c78997bf625ffcca49c18e11ab0f5448b26d7452: man page: include reference to version 4 of the terse format (2017-05-09 21:08:12 -0600) are available in the git repository at: git://git.kernel.dk/fio.git master for you to fetch changes up to dd3805d49995e59fdf61e2560c3fec5b7f5c71b6: Remove leftover warnings (2017-05-18 12:53:38 -0600) ---------------------------------------------------------------- Jens Axboe (2): Fix wrap issue with 64-bit pwritev2/preadv2 Remove leftover warnings os/os-linux.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) --- Diff of recent changes: diff --git a/os/os-linux.h b/os/os-linux.h index 911f7e7..ba53590 100644 --- a/os/os-linux.h +++ b/os/os-linux.h @@ -314,9 +314,13 @@ static inline int fio_set_sched_idle(void) static inline void make_pos_h_l(unsigned long *pos_h, unsigned long *pos_l, off_t offset) { +#if BITS_PER_LONG == 64 + *pos_l = offset; + *pos_h = 0; +#else *pos_l = offset & 0xffffffff; *pos_h = ((uint64_t) offset) >> 32; - +#endif } static inline ssize_t preadv2(int fd, const struct iovec *iov, int iovcnt, off_t offset, unsigned int flags) -- 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