From: Jens Axboe Date: Wed, 25 Aug 2010 08:47:18 +0000 (+0200) Subject: Add missing types to io_u_log_error() X-Git-Tag: fio-1.43.1~2 X-Git-Url: https://git.kernel.dk/?p=fio.git;a=commitdiff_plain;h=825f818eab0cef7683b8ef359642a45ddef8ea8e Add missing types to io_u_log_error() Signed-off-by: Jens Axboe --- diff --git a/io_u.c b/io_u.c index 3eeade26..53bf4923 100644 --- a/io_u.c +++ b/io_u.c @@ -1065,7 +1065,10 @@ err_put: void io_u_log_error(struct thread_data *td, struct io_u *io_u) { - const char *msg[] = { "read", "write", "sync" }; + const char *msg[] = { "read", "write", "sync", "datasync", + "sync_file_range", "wait", "trim" }; + + log_err("fio: io_u error");