* [PATCH] fio: register pvsync2 engine correctly
@ 2016-03-30 22:17 Jon Derrick
2016-04-02 2:56 ` Jens Axboe
0 siblings, 1 reply; 2+ messages in thread
From: Jon Derrick @ 2016-03-30 22:17 UTC (permalink / raw)
To: fio; +Cc: Jon Derrick
I'm experimenting with the new syscalls and noticed fio's support was
incomplete. This patch fixes some of those issues.
Signed-off-by: Jon Derrick <jonathan.derrick@intel.com>
---
Additionally, until libc catches up, I've hacked in:
#include <unistd.h>
#include <sys/syscall.h>
#define preadv2(...) syscall(SYS_preadv2, __VA_ARGS__)
#define pwritev2(...) syscall(SYS_pwritev2, __VA_ARGS__)
engines/sync.c | 6 ++++++
options.c | 2 +-
2 files changed, 7 insertions(+), 1 deletion(-)
diff --git a/engines/sync.c b/engines/sync.c
index 0b0d1a7..260ef66 100644
--- a/engines/sync.c
+++ b/engines/sync.c
@@ -453,6 +453,9 @@ static void fio_init fio_syncio_register(void)
#ifdef CONFIG_PWRITEV
register_ioengine(&ioengine_pvrw);
#endif
+#ifdef CONFIG_PWRITEV2
+ register_ioengine(&ioengine_pvrw2);
+#endif
}
static void fio_exit fio_syncio_unregister(void)
@@ -463,4 +466,7 @@ static void fio_exit fio_syncio_unregister(void)
#ifdef CONFIG_PWRITEV
unregister_ioengine(&ioengine_pvrw);
#endif
+#ifdef CONFIG_PWRITEV2
+ unregister_ioengine(&ioengine_pvrw2);
+#endif
}
diff --git a/options.c b/options.c
index 062abb4..b6c980e 100644
--- a/options.c
+++ b/options.c
@@ -1471,7 +1471,7 @@ struct fio_option fio_options[FIO_MAX_OPTS] = {
.help = "Use preadv/pwritev",
},
#endif
-#ifdef CONFIG_PWRITEV
+#ifdef CONFIG_PWRITEV2
{ .ival = "pvsync2",
.help = "Use preadv2/pwritev2",
},
--
2.5.0
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2016-04-02 2:56 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-03-30 22:17 [PATCH] fio: register pvsync2 engine correctly Jon Derrick
2016-04-02 2:56 ` Jens Axboe
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox