From: Jens Axboe Date: Tue, 20 Feb 2007 18:49:57 +0000 (+0100) Subject: mmap IO engine cannot extend a file X-Git-Tag: fio-1.12~49 X-Git-Url: https://git.kernel.dk/?p=fio.git;a=commitdiff_plain;h=948f9b2eed7aeee6367957ea30be7a2da94d5b1b;hp=6c23570dd5458d8f7c7086fb86675ce7b424d4fd mmap IO engine cannot extend a file We need to ftruncate it to the wanted size first, or the mmap write will terminate with SIGBUS. Signed-off-by: Jens Axboe --- diff --git a/engines/mmap.c b/engines/mmap.c index d32fe969..08bbd991 100644 --- a/engines/mmap.c +++ b/engines/mmap.c @@ -42,10 +42,33 @@ static int fio_mmapio_queue(struct thread_data *td, struct io_u *io_u) return FIO_Q_COMPLETED; } +static int fio_mmapio_init(struct thread_data *td) +{ + struct fio_file *f; + int i; + + if (td->ddir == DDIR_READ && !td_rw(td)) + return 0; + + /* + * We need to truncate the files to the right size, if + * we are writing to it. + */ + for_each_file(td, f, i) { + if (ftruncate(f->fd, f->file_size) < 0) { + td_verror(td, errno); + return 1; + } + } + + return 0; +} + static struct ioengine_ops ioengine = { .name = "mmap", .version = FIO_IOOPS_VERSION, .queue = fio_mmapio_queue, + .init = fio_mmapio_init, .flags = FIO_SYNCIO | FIO_MMAPIO, };