From: Jens Axboe Date: Mon, 12 Jun 2006 13:17:03 +0000 (+0200) Subject: [PATCH] Pass full required size into create_file() X-Git-Tag: fio-1.5~4 X-Git-Url: https://git.kernel.dk/?p=fio.git;a=commitdiff_plain;h=a71e13bb81c7943d9524e26cbad9534519ca6e2e;hp=c20d25b436e7934a622974de5b20bbd5de24e3f1 [PATCH] Pass full required size into create_file() --- diff --git a/fio.c b/fio.c index 47e0298d..82f321bf 100644 --- a/fio.c +++ b/fio.c @@ -1184,7 +1184,7 @@ static int setup_file(struct thread_data *td) return 1; } else if (td->filetype == FIO_TYPE_FILE) { if (st.st_size < (off_t) td->file_size) { - if (create_file(td, td->file_size - st.st_size, 1)) + if (create_file(td, td->file_size, 1)) return 1; } }