Recent changes (master)
Jens Axboe <[email protected]> Wed, 9 Jul 2025 06:00:01 -0600 (MDT)
| Newsgroups | org.kernel.vger.fio |
|---|---|
| Message-ID | <[email protected]> |
The following changes since commit 5db7e6b26bd07824c6207dcbac1a8e7a95a3f20c:
Merge branch 'fix-randtrimwrite' of https://github.com/minwooim/fio (2025-06-30 07:42:00 -0600)
are available in the Git repository at:
git://git.kernel.dk/fio.git master
for you to fetch changes up to 010b8ba409a18ec1edbf3b776fb7652f26a99b81:
Merge branch 'http-filename-fix' of https://github.com/sfc-gh-rnarubin/fio (2025-07-08 11:54:05 -0600)
----------------------------------------------------------------
Jens Axboe (1):
Merge branch 'http-filename-fix' of https://github.com/sfc-gh-rnarubin/fio
Renar Narubin (1):
engines/http: fix file name
engines/http.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
---
Diff of recent changes:
diff --git a/engines/http.c b/engines/http.c
index 99f4e119..217aa575 100644
--- a/engines/http.c
+++ b/engines/http.c
@@ -643,7 +643,7 @@ static enum fio_q_status fio_http_queue(struct thread_data *td,
fio_ro_check(td, io_u);
memset(&_curl_stream, 0, sizeof(_curl_stream));
- snprintf(object, sizeof(object), "%s_%llu_%llu", td->files[0]->file_name,
+ snprintf(object, sizeof(object), "%s_%llu_%llu", io_u->file->file_name,
io_u->offset, io_u->xfer_buflen);
if (o->https == FIO_HTTPS_OFF)
snprintf(url, sizeof(url), "http://%s%s", o->host, object);