Hi Linus, The following changes since commit 65f33b35722952fa076811d5686bfd8a611a80fa: block: fix incorrect branching in blk_max_size_offset() (2020-12-04 17:27:42 -0500) are available in the Git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git tags/for-5.11/dm-changes for you to fetch changes up to b77709237e72d6467fb27bfbad163f7221ecd648: dm cache: simplify the return expression of load_mapping() (2020-12-22 09:54:48 -0500) Please pull, thanks. Mike ---------------------------------------------------------------- - Add DM verity support for signature verification with 2nd keyring. - Fix DM verity to skip verity work if IO completes with error while system is shutting down. - Add new DM multipath "IO affinity" path selector that maps IO destined to a given path to a specific CPU based on user provided mapping. - Rename DM multipath path selector source files to have "dm-ps" prefix. - Add REQ_NOWAIT support to some other simple DM targets that don't block in more elaborate ways waiting for IO. - Export DM crypt's kcryptd workqueue via sysfs (WQ_SYSFS). - Fix error return code in DM's target_message() if empty message is received. - A handful of other small cleanups. ---------------------------------------------------------------- Antonio Quartulli (1): dm ebs: avoid double unlikely() notation when using IS_ERR() Hyeongseok Kim (1): dm verity: skip verity work if I/O error when system is shutting down Jeffle Xu (3): dm: remove unnecessary current->bio_list check when submitting split bio dm: add support for REQ_NOWAIT to various targets dm crypt: export sysfs of kcryptd workqueue Mickaël Salaün (1): dm verity: Add support for signature verification with 2nd keyring Mike Christie (1): dm mpath: add IO affinity path selector Mike Snitzer (1): dm: rename multipath path selector source files to have "dm-ps" prefix Qinglang Miao (1): dm ioctl: fix error return code in target_message Rikard Falkeborn (1): dm crypt: Constify static crypt_iv_operations Zheng Yongjun (1): dm cache: simplify the return expression of load_mapping() Documentation/admin-guide/device-mapper/verity.rst | 7 +- drivers/md/Kconfig | 22 +- drivers/md/Makefile | 20 +- drivers/md/dm-cache-target.c | 7 +- drivers/md/dm-crypt.c | 13 +- drivers/md/dm-ebs-target.c | 2 +- drivers/md/dm-ioctl.c | 1 + ...vice-time.c => dm-ps-historical-service-time.c} | 0 drivers/md/dm-ps-io-affinity.c | 272 +++++++++++++++++++++ .../md/{dm-queue-length.c => dm-ps-queue-length.c} | 0 .../md/{dm-round-robin.c => dm-ps-round-robin.c} | 0 .../md/{dm-service-time.c => dm-ps-service-time.c} | 0 drivers/md/dm-stripe.c | 2 +- drivers/md/dm-switch.c | 1 + drivers/md/dm-unstripe.c | 1 + drivers/md/dm-verity-target.c | 12 +- drivers/md/dm-verity-verify-sig.c | 9 +- drivers/md/dm-zero.c | 1 + drivers/md/dm.c | 2 +- 19 files changed, 345 insertions(+), 27 deletions(-) rename drivers/md/{dm-historical-service-time.c => dm-ps-historical-service-time.c} (100%) create mode 100644 drivers/md/dm-ps-io-affinity.c rename drivers/md/{dm-queue-length.c => dm-ps-queue-length.c} (100%) rename drivers/md/{dm-round-robin.c => dm-ps-round-robin.c} (100%) rename drivers/md/{dm-service-time.c => dm-ps-service-time.c} (100%)