From f85a010a6bc9dc0414ccdf9c6b195c78231f1914 Mon Sep 17 00:00:00 2001 From: David Teigland Date: Mon, 18 Jun 2018 11:59:57 -0500 Subject: [PATCH] bcache: remove extraneous error message an error from io_submit is already recognized by the caller like errors during completion. --- lib/device/bcache.c | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/device/bcache.c b/lib/device/bcache.c index f4c07127a..f315b2a75 100644 --- a/lib/device/bcache.c +++ b/lib/device/bcache.c @@ -191,7 +191,6 @@ static bool _async_issue(struct io_engine *ioe, enum dir d, int fd, } while (r == -EAGAIN); if (r < 0) { - log_sys_warn("io_submit"); _cb_free(e->cbs, cb); return false; }