The following changes since commit e6989e10964f5ae30e0ba8f0cd27a663baf5617b: log: add support for logging max instead of averages (2016-02-04 12:09:48 -0700) are available in the git repository at: git://git.kernel.dk/fio.git master for you to fetch changes up to 820ba1f9c31bbe92e9b8f71d587907819919c0f8: io_ddir: io_ddir_name array should be static (2016-02-05 08:42:26 -0700) ---------------------------------------------------------------- Andrey Kuzmin (1): fio: fix copy/paste error in io_ddir.h Jens Axboe (1): io_ddir: io_ddir_name array should be static io_ddir.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) --- Diff of recent changes: diff --git a/io_ddir.h b/io_ddir.h index e5eff68..763e826 100644 --- a/io_ddir.h +++ b/io_ddir.h @@ -16,8 +16,9 @@ enum fio_ddir { static inline const char *io_ddir_name(enum fio_ddir ddir) { - const char *name[] = { "read", "write", "trim", "sync", "datasync", - "sync_file_range", "write", }; + static const char *name[] = { "read", "write", "trim", "sync", + "datasync", "sync_file_range", + "wait", }; if (ddir < DDIR_LAST) return name[ddir]; -- 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