Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

dm writecache: fix typo in name for writeback_wq

The workqueue's name should be "writecache-writeback" instead of
"writecache-writeabck".

Signed-off-by: Huaisheng Ye <yehs1@lenovo.com>
Signed-off-by: Mike Snitzer <snitzer@redhat.com>

authored by

Huaisheng Ye and committed by
Mike Snitzer
f87e033b 6bbc923d

+1 -1
+1 -1
drivers/md/dm-writecache.c
··· 1859 1859 goto bad; 1860 1860 } 1861 1861 1862 - wc->writeback_wq = alloc_workqueue("writecache-writeabck", WQ_MEM_RECLAIM, 1); 1862 + wc->writeback_wq = alloc_workqueue("writecache-writeback", WQ_MEM_RECLAIM, 1); 1863 1863 if (!wc->writeback_wq) { 1864 1864 r = -ENOMEM; 1865 1865 ti->error = "Could not allocate writeback workqueue";