Recent changes (master)
Jens Axboe <[email protected]> Tue, 30 Dec 2025 06:00:01 -0700
| Newsgroups | org.kernel.vger.fio |
|---|---|
| Message-ID | <[email protected]> |
The following changes since commit d028bdcb8515a29eb683a23b0a88c398cfe4d687:
test: cleanup test artifacts as we are running (2025-12-18 16:33:42 -0500)
are available in the Git repository at:
git://git.kernel.dk/fio.git master
for you to fetch changes up to e12461d7864cf99581759f5417ca60dc68fee446:
Merge branch 'master' of https://github.com/alex310110/fio (2025-12-29 13:08:16 -0700)
----------------------------------------------------------------
Jens Axboe (1):
Merge branch 'master' of https://github.com/alex310110/fio
alex310110 (1):
write_hist_log: do not require ZLIB for non-server instances
init.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
---
Diff of recent changes:
diff --git a/init.c b/init.c
index cf66ac2c..76ec96d4 100644
--- a/init.c
+++ b/init.c
@@ -1769,7 +1769,7 @@ static int add_job(struct thread_data *td, const char *jobname, int job_add_num,
const char *suf;
#ifndef CONFIG_ZLIB
- if (td->client_type) {
+ if (is_backend) {
log_err("fio: --write_hist_log requires zlib in client/server mode\n");
goto err;
}