From: Jens Axboe Date: Mon, 2 Jun 2008 08:37:36 +0000 (+0200) Subject: Don't make posix_fallocate() set td->verror X-Git-Tag: fio-1.21-rc5~11 X-Git-Url: https://git.kernel.dk/?p=fio.git;a=commitdiff_plain;h=659424767f62f46c429eb66bf46b3e836e3bc0ad;hp=07bfc19e548ad5515c37a471a97398a727d46a1c Don't make posix_fallocate() set td->verror It's supposed to be an error log, not stop the job. Signed-off-by: Jens Axboe --- diff --git a/filesetup.c b/filesetup.c index d7fbfc3d..746b3cda 100644 --- a/filesetup.c +++ b/filesetup.c @@ -72,7 +72,7 @@ static int extend_file(struct thread_data *td, struct fio_file *f) f->real_file_size); r = posix_fallocate(f->fd, 0, f->real_file_size); if (r < 0) - td_verror(td, -r, "posix_fallocate"); + log_err("fio: posix_fallocate fails: %s\n", strerror(-r)); b = malloc(td->o.max_bs[DDIR_WRITE]); memset(b, 0, td->o.max_bs[DDIR_WRITE]);