The following changes since commit 2341a37a2df4bca221d5ea25aa7d8a8307407d1a: Fix clat latency terse output (2011-10-19 21:36:34 +0200) are available in the git repository at: git://git.kernel.dk/fio.git master Jens Axboe (1): Fix io_u->buf calculation overflow fio.c | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) --- Diff of recent changes: diff --git a/fio.c b/fio.c index c18df12..5b58ab8 100644 --- a/fio.c +++ b/fio.c @@ -936,7 +936,7 @@ static int init_io_u(struct thread_data *td) dprint(FD_MEM, "io_u alloc %p, index %u\n", io_u, i); if (!(td->io_ops->flags & FIO_NOIO)) { - io_u->buf = p + max_bs * i; + io_u->buf = p; dprint(FD_MEM, "io_u %p, mem %p\n", io_u, io_u->buf); if (td_write(td)) @@ -953,6 +953,7 @@ static int init_io_u(struct thread_data *td) io_u->index = i; io_u->flags = IO_U_F_FREE; flist_add(&io_u->list, &td->io_u_freelist); + p += max_bs; } return 0; -- 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