Hi Linus, I missed sending the DM changes during the 6.1 merge window. Slipped my mind largely due to there not being anything super urgent or more elaborate this cycle. But there is one additional stable@ fix from Mikulas that I'll send separately since it requires the recently introduced test_bit_acquire(). The following changes since commit 1c23f9e627a7b412978b4e852793c5e3c3efc555: Linux 6.0-rc2 (2022-08-21 17:32:54 -0700) are available in the Git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git tags/for-6.1/dm-changes for you to fetch changes up to a871fb26aba8911ea313dc7bd28f3e788a80fdb4: dm clone: Fix typo in block_device format specifier (2022-10-04 19:00:22 -0400) Please pull, thanks. Mike ---------------------------------------------------------------- - DM core replace DMWARN with DMERR or DMCRIT for fatal errors. - Enhance DM ioctl interface to allow returning an error string to userspace. Depends on exporting is_vmalloc_or_module_addr() to allow DM core to conditionally free memory allocated with kasprintf(). - Enable WQ_HIGHPRI on DM verity target's verify_wq. - Add documentation for DM verity's try_verify_in_tasklet option. - Various typo and redundant word fixes in code and/or comments. ---------------------------------------------------------------- Genjian Zhang (1): dm: remove unnecessary assignment statement in alloc_dev() Jiangshan Yi (1): dm raid: fix typo in analyse_superblocks code comment Jilin Yuan (1): dm raid: delete the redundant word 'that' in comment Mikulas Patocka (4): dm: change from DMWARN to DMERR or DMCRIT for fatal errors dm ioctl: add an option to return an error string to userspace mm: export is_vmalloc_or_module_addr dm: support allocating error strings to enhance errors returned to userspace Milan Broz (1): dm verity: Add documentation for try_verify_in_tasklet option Nathan Huckleberry (1): dm verity: enable WQ_HIGHPRI on verify_wq Nikos Tsironis (1): dm clone: Fix typo in block_device format specifier Shaomin Deng (1): dm cache: delete the redundant word 'each' in comment Documentation/admin-guide/device-mapper/verity.rst | 4 + drivers/md/dm-cache-policy.h | 2 +- drivers/md/dm-clone-target.c | 2 +- drivers/md/dm-ioctl.c | 125 +++++++++++------- drivers/md/dm-raid.c | 4 +- drivers/md/dm-rq.c | 4 +- drivers/md/dm-stats.c | 2 +- drivers/md/dm-table.c | 139 +++++++++++---------- drivers/md/dm-verity-target.c | 18 +-- drivers/md/dm.c | 9 +- include/linux/device-mapper.h | 18 ++- include/uapi/linux/dm-ioctl.h | 14 ++- mm/vmalloc.c | 1 + 13 files changed, 205 insertions(+), 137 deletions(-)