From 54d0a3150d44adca3ee4047fabd85651c6ea2db1 Mon Sep 17 00:00:00 2001 From: Vincent Fu Date: Thu, 9 Jun 2016 13:30:52 -0600 Subject: [PATCH] options: fix typos Fixes: a275c37ab000 ("options: mark unsupported options as such") Signed-off-by: Jens Axboe --- options.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/options.c b/options.c index e8c0b7f3..51998239 100644 --- a/options.c +++ b/options.c @@ -2190,6 +2190,7 @@ struct fio_option fio_options[FIO_MAX_OPTS] = { .group = FIO_OPT_G_INVALID, }, #else + { .name = "fadvise_stream", .lname = "Fadvise stream", .type = FIO_OPT_UNSUPPORTED, @@ -2259,6 +2260,7 @@ struct fio_option fio_options[FIO_MAX_OPTS] = { .group = FIO_OPT_G_INVALID, }, #else + { .name = "sync_file_range", .lname = "Sync file range", .type = FIO_OPT_UNSUPPORTED, @@ -2700,7 +2702,7 @@ struct fio_option fio_options[FIO_MAX_OPTS] = { .name = "verify_async_cpus", .lname = "Async verify CPUs", .type = FIO_OPT_UNSUPPORTED, - .help "Your platform does not support CPU affinities", + .help = "Your platform does not support CPU affinities", }, #endif { -- 2.25.1