diff mbox series

dm writecache: fix typo in error msg for creating writecache_flush_thread

Message ID 20181024080436.2230-1-shhuiw@foxmail.com (mailing list archive)
State Accepted, archived
Delegated to: Mike Snitzer
Headers show
Series dm writecache: fix typo in error msg for creating writecache_flush_thread | expand

Commit Message

Shenghui Wang Oct. 24, 2018, 8:04 a.m. UTC
The error msg should be "flush thread" instead of "endio thread"
for writecache_flush_thread.

Signed-off-by: Shenghui Wang <shhuiw@foxmail.com>
---
 drivers/md/dm-writecache.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/drivers/md/dm-writecache.c b/drivers/md/dm-writecache.c
index 5f1f80d424dd..d656bd1799ae 100644
--- a/drivers/md/dm-writecache.c
+++ b/drivers/md/dm-writecache.c
@@ -2064,7 +2064,7 @@  static int writecache_ctr(struct dm_target *ti, unsigned argc, char **argv)
 		if (IS_ERR(wc->flush_thread)) {
 			r = PTR_ERR(wc->flush_thread);
 			wc->flush_thread = NULL;
-			ti->error = "Couldn't spawn endio thread";
+			ti->error = "Couldn't spawn flush thread";
 			goto bad;
 		}
 		wake_up_process(wc->flush_thread);