Leftover debug message
[fio.git] / engines / mmap.c
... / ...
CommitLineData
1/*
2 * regular read/write sync io engine
3 *
4 */
5#include <stdio.h>
6#include <stdlib.h>
7#include <unistd.h>
8#include <errno.h>
9#include <assert.h>
10#include <sys/mman.h>
11
12#include "../fio.h"
13#include "../os.h"
14
15static int fio_mmapio_queue(struct thread_data *td, struct io_u *io_u)
16{
17 struct fio_file *f = io_u->file;
18 unsigned long long real_off = io_u->offset - f->file_offset;
19
20 if (io_u->ddir == DDIR_READ)
21 memcpy(io_u->xfer_buf, f->mmap + real_off, io_u->xfer_buflen);
22 else if (io_u->ddir == DDIR_WRITE)
23 memcpy(f->mmap + real_off, io_u->xfer_buf, io_u->xfer_buflen);
24 else if (io_u->ddir == DDIR_SYNC) {
25 if (msync(f->mmap, f->file_size, MS_SYNC))
26 io_u->error = errno;
27 }
28
29 /*
30 * not really direct, but should drop the pages from the cache
31 */
32 if (td->odirect && io_u->ddir != DDIR_SYNC) {
33 if (msync(f->mmap + real_off, io_u->xfer_buflen, MS_SYNC) < 0)
34 io_u->error = errno;
35 if (madvise(f->mmap + real_off, io_u->xfer_buflen, MADV_DONTNEED) < 0)
36 io_u->error = errno;
37 }
38
39 if (io_u->error)
40 td_verror(td, io_u->error);
41
42 return FIO_Q_COMPLETED;
43}
44
45static struct ioengine_ops ioengine = {
46 .name = "mmap",
47 .version = FIO_IOOPS_VERSION,
48 .queue = fio_mmapio_queue,
49 .flags = FIO_SYNCIO | FIO_MMAPIO,
50};
51
52static void fio_init fio_mmapio_register(void)
53{
54 register_ioengine(&ioengine);
55}
56
57static void fio_exit fio_mmapio_unregister(void)
58{
59 unregister_ioengine(&ioengine);
60}