dm integrity: fix spelling mistake "flusing" -> "flushing"

There is a spelling mistake in a dm_integrity_io_error error
message. Fix it.

Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: Mike Snitzer <snitzer@redhat.com>
This commit is contained in:
Colin Ian King 2021-01-11 09:25:55 +00:00 committed by Mike Snitzer
parent 74d1da3988
commit 23c4ecbc3e

View File

@ -1399,7 +1399,7 @@ static void flush_notify(unsigned long error, void *fr_)
{ {
struct flush_request *fr = fr_; struct flush_request *fr = fr_;
if (unlikely(error != 0)) if (unlikely(error != 0))
dm_integrity_io_error(fr->ic, "flusing disk cache", -EIO); dm_integrity_io_error(fr->ic, "flushing disk cache", -EIO);
complete(&fr->comp); complete(&fr->comp);
} }