HOWTO: fix up broken formatting in logging options
[fio.git] / options.c
index e8d1a3abbbf931229b83845170e1f33dec2d55bf..7caccb331c1ec5be2a3de986208c44921db2db20 100644 (file)
--- a/options.c
+++ b/options.c
@@ -1851,6 +1851,11 @@ struct fio_option fio_options[FIO_MAX_OPTS] = {
                            .help = "Load external engine (append name)",
                            .cb = str_ioengine_external_cb,
                          },
+#ifdef CONFIG_LIBPMEM
+                         { .ival = "libpmem",
+                           .help = "NVML libpmem based IO engine",
+                         },
+#endif
                },
        },
        {
@@ -4122,6 +4127,19 @@ struct fio_option fio_options[FIO_MAX_OPTS] = {
                .category = FIO_OPT_C_STAT,
                .group  = FIO_OPT_G_INVALID,
        },
+       {
+               .name   = "significant_figures",
+               .lname  = "Significant figures",
+               .type   = FIO_OPT_INT,
+               .off1   = offsetof(struct thread_options, sig_figs),
+               .maxval = 10,
+               .minval = 1,
+               .help   = "Significant figures for output-format set to normal",
+               .def    = "4",
+               .interval = 1,
+               .category = FIO_OPT_C_STAT,
+               .group  = FIO_OPT_G_INVALID,
+       },
 
 #ifdef FIO_HAVE_DISK_UTIL
        {