The following changes since commit b87ed299820c26e8c4271294b0c5037e8d0a3d4a: client: support --status-interval option in client/server mode (2018-08-05 15:12:12 -0600) are available in the git repository at: git://git.kernel.dk/fio.git master for you to fetch changes up to 2ce58465415fc4d900c4dd89b86acbcaa51d9dfb: libpmem: fix type print (2018-08-07 08:09:47 -0600) ---------------------------------------------------------------- Jens Axboe (1): libpmem: fix type print engines/libpmem.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) --- Diff of recent changes: diff --git a/engines/libpmem.c b/engines/libpmem.c index 4ef3094..99c7b50 100644 --- a/engines/libpmem.c +++ b/engines/libpmem.c @@ -424,10 +424,10 @@ static int fio_libpmem_prep(struct thread_data *td, struct io_u *io_u) /* * It fits within existing mapping, use it */ - dprint(FD_IO," io_u->offset %lld : fdd->libpmem_off %ld : " - "io_u->buflen %ld : fdd->libpmem_sz %ld\n", - io_u->offset, fdd->libpmem_off, - io_u->buflen, fdd->libpmem_sz); + dprint(FD_IO," io_u->offset %llu : fdd->libpmem_off %llu : " + "io_u->buflen %llu : fdd->libpmem_sz %llu\n", + io_u->offset, (unsigned long long) fdd->libpmem_off, + io_u->buflen, (unsigned long long) fdd->libpmem_sz); if (io_u->offset >= fdd->libpmem_off && (io_u->offset + io_u->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