The following changes since commit 1f43cc2e7b2f3ac7461f8ea66bb9b32cb03075c3: Merge branch 'server-hist-le64' of https://github.com/tuan-hoang1/fio (2022-07-06 16:38:07 -0600) are available in the Git repository at: git://git.kernel.dk/fio.git master for you to fetch changes up to 30568e0ed9366a810dfcf90a903ecfbff1a6196c: Merge branch 'client-hist-le64' of https://github.com/tuan-hoang1/fio (2022-07-07 06:33:25 -0600) ---------------------------------------------------------------- Jens Axboe (1): Merge branch 'client-hist-le64' of https://github.com/tuan-hoang1/fio Tuan Hoang (1): client: only do le64_to_cpu() on io_sample_data member if iolog is histogram client.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) --- Diff of recent changes: diff --git a/client.c b/client.c index 605a3ce5..37da74bc 100644 --- a/client.c +++ b/client.c @@ -1702,7 +1702,8 @@ static struct cmd_iolog_pdu *convert_iolog(struct fio_net_cmd *cmd, s = (struct io_sample *)((char *)s + sizeof(struct io_u_plat_entry) * i); s->time = le64_to_cpu(s->time); - s->data.val = le64_to_cpu(s->data.val); + if (ret->log_type != IO_LOG_TYPE_HIST) + s->data.val = le64_to_cpu(s->data.val); s->__ddir = __le32_to_cpu(s->__ddir); s->bs = le64_to_cpu(s->bs); s->priority = le16_to_cpu(s->priority);