Recent changes (master)

Jens Axboe <[email protected]> Wed, 29 Oct 2025 06:00:01 -0600
Newsgroups org.kernel.vger.fio
Message-ID <[email protected]>
The following changes since commit 7272fd82813a65e3d72ef5c543c7473ec411f4cd:

  t/io_uring: use IORING_SETUP_NO_SQARRAY if available (2025-10-15 08:12:57 -0600)

are available in the Git repository at:

  git://git.kernel.dk/fio.git master

for you to fetch changes up to 967de14b99c124aa0bd8269cbfa230147faffab6:

  Merge branch 'hist_coarseness' of https://github.com/tachyonwill/fio (2025-10-28 12:41:15 -0400)

----------------------------------------------------------------
Vincent Fu (1):
      Merge branch 'hist_coarseness' of https://github.com/tachyonwill/fio

William Butler (1):
      options: Add range validation for log_hist_coarseness

 options.c | 2 ++
 1 file changed, 2 insertions(+)

---

Diff of recent changes:

diff --git a/options.c b/options.c
index 77b42cdb..e1a87430 100644
--- a/options.c
+++ b/options.c
@@ -4751,6 +4751,8 @@ struct fio_option fio_options[FIO_MAX_OPTS] = {
 		.name	= "log_hist_coarseness",
 		.lname	= "Histogram logs coarseness",
 		.type	= FIO_OPT_INT,
+		.maxval = 6,
+		.minval = 0,
 		.off1	= offsetof(struct thread_options, log_hist_coarseness),
 		.help	= "Integer in range [0,6]. Higher coarseness outputs"
 			" fewer histogram bins per sample. The number of bins for"