From: Erwan Velu Date: Wed, 8 Sep 2021 21:00:45 +0000 (+0200) Subject: zbd: Removing useless variable assignment X-Git-Tag: fio-3.29~104^2~1 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=000ecb5fe36dea8acbcbf8f185d00592222c95e1;p=fio.git zbd: Removing useless variable assignment zone_idx_b is set but never read again. Signed-off-by: Erwan Velu --- diff --git a/zbd.c b/zbd.c index 1b933ce4..dd1abc58 100644 --- a/zbd.c +++ b/zbd.c @@ -1857,7 +1857,7 @@ enum io_u_action zbd_adjust_block(struct thread_data *td, struct io_u *io_u) f->file_name); goto eof; } - zone_idx_b = zbd_zone_nr(f, zb); + zbd_zone_nr(f, zb); } /* Check whether the zone reset threshold has been exceeded */ if (td->o.zrf.u.f) {