The following changes since commit 23a8e176c3725f3640eaaf31a0a4c7497366c40f: HOWTO/man: clarify that the usr/sys utilization numbers are averages (2016-03-29 08:34:06 -0600) are available in the git repository at: git://git.kernel.dk/fio.git master for you to fetch changes up to 526c403dc9b892ae1dda6ebb2a0f2d5883795d17: fio: register pvsync2 engine correctly (2016-04-01 20:56:52 -0600) ---------------------------------------------------------------- Jon Derrick (1): fio: register pvsync2 engine correctly engines/sync.c | 6 ++++++ options.c | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) --- Diff of recent changes: 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", }, -- To unsubscribe from this list: send the line "unsubscribe fio" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html