X-Git-Url: https://git.kernel.dk/?p=fio.git;a=blobdiff_plain;f=engines%2Fmmap.c;h=da6906947764ba099c377be51bae7c231b070ee6;hp=0922e97e045d7baa3e938867bcfd5dcd8556777d;hb=2c187c0fcaab8a4c6d1ba67d2ad2460b5fb42109;hpb=cfc99db7b9e806e7739b360dfa005360d0fe8837 diff --git a/engines/mmap.c b/engines/mmap.c index 0922e97e..da690694 100644 --- a/engines/mmap.c +++ b/engines/mmap.c @@ -1,5 +1,8 @@ /* - * regular read/write sync io engine + * mmap engine + * + * IO engine that reads/writes from files by doing memcpy to/from + * a memory mapped region of the file. * */ #include @@ -22,7 +25,7 @@ static int fio_mmapio_queue(struct thread_data *td, struct io_u *io_u) else if (io_u->ddir == DDIR_WRITE) memcpy(f->mmap + real_off, io_u->xfer_buf, io_u->xfer_buflen); else if (io_u->ddir == DDIR_SYNC) { - size_t len = (f->file_size + page_size - 1) & ~page_mask; + size_t len = (f->io_size + page_size - 1) & ~page_mask; if (msync(f->mmap, len, MS_SYNC)) { io_u->error = errno; @@ -33,7 +36,7 @@ static int fio_mmapio_queue(struct thread_data *td, struct io_u *io_u) /* * not really direct, but should drop the pages from the cache */ - if (td->odirect && io_u->ddir != DDIR_SYNC) { + if (td->o.odirect && io_u->ddir != DDIR_SYNC) { size_t len = (io_u->xfer_buflen + page_size - 1) & ~page_mask; unsigned long long off = real_off & ~page_mask; @@ -63,12 +66,12 @@ static int fio_mmapio_open(struct thread_data *td, struct fio_file *f) else if (td_write(td)) { flags = PROT_WRITE; - if (td->verify != VERIFY_NONE) + if (td->o.verify != VERIFY_NONE) flags |= PROT_READ; } else flags = PROT_READ; - f->mmap = mmap(NULL, f->file_size, flags, MAP_SHARED, f->fd, f->file_offset); + f->mmap = mmap(NULL, f->io_size, flags, MAP_SHARED, f->fd, f->file_offset); if (f->mmap == MAP_FAILED) { f->mmap = NULL; td_verror(td, errno, "mmap"); @@ -79,12 +82,12 @@ static int fio_mmapio_open(struct thread_data *td, struct fio_file *f) goto err; if (!td_random(td)) { - if (madvise(f->mmap, f->file_size, MADV_SEQUENTIAL) < 0) { + if (madvise(f->mmap, f->io_size, MADV_SEQUENTIAL) < 0) { td_verror(td, errno, "madvise"); goto err; } } else { - if (madvise(f->mmap, f->file_size, MADV_RANDOM) < 0) { + if (madvise(f->mmap, f->io_size, MADV_RANDOM) < 0) { td_verror(td, errno, "madvise"); goto err; } @@ -101,7 +104,7 @@ static void fio_mmapio_close(struct thread_data fio_unused *td, struct fio_file *f) { if (f->mmap) { - munmap(f->mmap, f->file_size); + munmap(f->mmap, f->io_size); f->mmap = NULL; } generic_close_file(td, f);