From 825f818eab0cef7683b8ef359642a45ddef8ea8e Mon Sep 17 00:00:00 2001 From: Jens Axboe Date: Wed, 25 Aug 2010 10:47:18 +0200 Subject: [PATCH] Add missing types to io_u_log_error() Signed-off-by: Jens Axboe --- io_u.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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"); -- 2.25.1