* [RFC] mmap: under direct=1, only call msync and madvise on writes
@ 2018-07-14 0:19 Robert Elliott
2018-07-24 15:49 ` Jens Axboe
0 siblings, 1 reply; 2+ messages in thread
From: Robert Elliott @ 2018-07-14 0:19 UTC (permalink / raw)
To: fio; +Cc: Robert Elliott
While using the mmap engine with direct=1 (an artificial combination),
only call msync() and madvise(DONTNEED) for writes; don't worry about
reads.
This better simulates an application that periodically wants to flush
updated data to disk, but wants to keep read data in memory.
Signed-off-by: Robert Elliott <elliott@hpe.com>
---
engines/mmap.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/engines/mmap.c b/engines/mmap.c
index 308b4665..cacf1768 100644
--- a/engines/mmap.c
+++ b/engines/mmap.c
@@ -205,7 +205,7 @@ static enum fio_q_status fio_mmapio_queue(struct thread_data *td,
/*
* not really direct, but should drop the pages from the cache
*/
- if (td->o.odirect && ddir_rw(io_u->ddir)) {
+ if (td->o.odirect && (io_u->ddir == DDIR_WRITE || io_u->ddir == DDIR_TRIM)) {
if (msync(io_u->mmap_data, io_u->xfer_buflen, MS_SYNC) < 0) {
io_u->error = errno;
td_verror(td, io_u->error, "msync");
--
2.14.4
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [RFC] mmap: under direct=1, only call msync and madvise on writes
2018-07-14 0:19 [RFC] mmap: under direct=1, only call msync and madvise on writes Robert Elliott
@ 2018-07-24 15:49 ` Jens Axboe
0 siblings, 0 replies; 2+ messages in thread
From: Jens Axboe @ 2018-07-24 15:49 UTC (permalink / raw)
To: Robert Elliott, fio
On 7/13/18 6:19 PM, Robert Elliott wrote:
> While using the mmap engine with direct=1 (an artificial combination),
> only call msync() and madvise(DONTNEED) for writes; don't worry about
> reads.
>
> This better simulates an application that periodically wants to flush
> updated data to disk, but wants to keep read data in memory.
>
> Signed-off-by: Robert Elliott <elliott@hpe.com>
> ---
> engines/mmap.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/engines/mmap.c b/engines/mmap.c
> index 308b4665..cacf1768 100644
> --- a/engines/mmap.c
> +++ b/engines/mmap.c
> @@ -205,7 +205,7 @@ static enum fio_q_status fio_mmapio_queue(struct thread_data *td,
> /*
> * not really direct, but should drop the pages from the cache
> */
> - if (td->o.odirect && ddir_rw(io_u->ddir)) {
> + if (td->o.odirect && (io_u->ddir == DDIR_WRITE || io_u->ddir == DDIR_TRIM)) {
> if (msync(io_u->mmap_data, io_u->xfer_buflen, MS_SYNC) < 0) {
> io_u->error = errno;
> td_verror(td, io_u->error, "msync");
Looks fine, but might be a good idea to add a ddir_write() helper for it.
Maybe fio_ro_check() can use it too.
--
Jens Axboe
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2018-07-24 15:49 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-07-14 0:19 [RFC] mmap: under direct=1, only call msync and madvise on writes Robert Elliott
2018-07-24 15:49 ` Jens Axboe
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox