The following changes since commit 1eb5ca76ee17ff80dd06a0c2d22498ab720ec76f: configure: revert NFS configure change (2022-07-05 07:19:39 -0600) are available in the Git repository at: git://git.kernel.dk/fio.git master for you to fetch changes up to 1f43cc2e7b2f3ac7461f8ea66bb9b32cb03075c3: Merge branch 'server-hist-le64' of https://github.com/tuan-hoang1/fio (2022-07-06 16:38:07 -0600) ---------------------------------------------------------------- Jens Axboe (1): Merge branch 'server-hist-le64' of https://github.com/tuan-hoang1/fio Tuan Hoang (1): server: only do cpu_to_le64() on io_sample_data member if iolog is histogram server.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) --- Diff of recent changes: diff --git a/server.c b/server.c index 4c71bd44..b453be5f 100644 --- a/server.c +++ b/server.c @@ -2284,7 +2284,8 @@ int fio_send_iolog(struct thread_data *td, struct io_log *log, const char *name) struct io_sample *s = get_sample(log, cur_log, i); s->time = cpu_to_le64(s->time); - s->data.val = cpu_to_le64(s->data.val); + if (log->log_type != IO_LOG_TYPE_HIST) + s->data.val = cpu_to_le64(s->data.val); s->__ddir = __cpu_to_le32(s->__ddir); s->bs = cpu_to_le64(s->bs);