From: Jens Axboe Date: Sat, 10 Oct 2020 15:06:02 +0000 (-0600) Subject: flow: avoid holes in struct fio_flow X-Git-Tag: fio-3.24~24 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=2b7968d3708da475edc9c37e7009ab4fe8a3ecf7;p=fio.git flow: avoid holes in struct fio_flow Signed-off-by: Jens Axboe --- diff --git a/flow.c b/flow.c index ee4d761d..aca051e6 100644 --- a/flow.c +++ b/flow.c @@ -5,8 +5,8 @@ struct fio_flow { unsigned int refs; - struct flist_head list; unsigned int id; + struct flist_head list; unsigned long long flow_counter; unsigned int total_weight; };