From e84b371e121ee224e02a90d01bf9074b759a409f Mon Sep 17 00:00:00 2001 From: Jens Axboe Date: Sun, 16 Jan 2011 08:32:08 -0700 Subject: [PATCH] Clean io_u->buf_filled_len in io_u_fill_buffer() Not a bug as such, but it could be if we used it in other locations in the future. So better be safe. Signed-off-by: Jens Axboe --- io_u.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/io_u.c b/io_u.c index 8cc348a8..185bba03 100644 --- a/io_u.c +++ b/io_u.c @@ -1374,6 +1374,8 @@ void io_u_queued(struct thread_data *td, struct io_u *io_u) void io_u_fill_buffer(struct thread_data *td, struct io_u *io_u, unsigned int max_bs) { + io_u->buf_filled_len = 0; + if (!td->o.zero_buffers) fill_random_buf(io_u->buf, max_bs); else -- 2.25.1