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

Configure Feed

Select the types of activity you want to include in your feed.

dm: Fix typo in error message

Remove the redundant "i" at the beginning of the error message. This "i"
came from commit 1c1318866928 ("dm: prefer
'"%s...", __func__'"), the "i" is accidentally left.

Signed-off-by: Ssuhung Yeh <ssuhung@gmail.com>
Signed-off-by: Mikulas Patocka <mpatocka@redhat.com>
Fixes: 1c1318866928 ("dm: prefer '"%s...", __func__'")
Cc: stable@vger.kernel.org # v6.3+

authored by

Ssuhung Yeh and committed by
Mikulas Patocka
2deb70d3 51f0659f

+1 -1
+1 -1
drivers/md/persistent-data/dm-space-map-common.c
··· 51 51 block_size - sizeof(__le32), 52 52 INDEX_CSUM_XOR)); 53 53 if (csum_disk != mi_le->csum) { 54 - DMERR_LIMIT("i%s failed: csum %u != wanted %u", __func__, 54 + DMERR_LIMIT("%s failed: csum %u != wanted %u", __func__, 55 55 le32_to_cpu(csum_disk), le32_to_cpu(mi_le->csum)); 56 56 return -EILSEQ; 57 57 }