1
0
mirror of git://sourceware.org/git/lvm2.git synced 2024-12-21 13:34:40 +03:00

bcache: remove extraneous error message

an error from io_submit is already recognized by
the caller like errors during completion.
This commit is contained in:
David Teigland 2018-06-18 11:59:57 -05:00
parent 565df4e732
commit f85a010a6b

View File

@ -191,7 +191,6 @@ static bool _async_issue(struct io_engine *ioe, enum dir d, int fd,
} while (r == -EAGAIN); } while (r == -EAGAIN);
if (r < 0) { if (r < 0) {
log_sys_warn("io_submit");
_cb_free(e->cbs, cb); _cb_free(e->cbs, cb);
return false; return false;
} }