All of lore.kernel.org
 help / color / mirror / Atom feed
From: Mike Snitzer <snitzer@redhat.com>
To: Linus Torvalds <torvalds@linux-foundation.org>
Cc: "Rikard Falkeborn" <rikard.falkeborn@gmail.com>,
	"Antonio Quartulli" <a@unstable.cc>,
	"Qinglang Miao" <miaoqinglang@huawei.com>,
	"Mickaël Salaün" <mic@linux.microsoft.com>,
	linux-block@vger.kernel.org,
	"Zheng Yongjun" <zhengyongjun3@huawei.com>,
	dm-devel@redhat.com,
	"Mike Christie" <michael.christie@oracle.com>,
	"Jeffle Xu" <jefflexu@linux.alibaba.com>,
	"Hyeongseok Kim" <hyeongseok@gmail.com>,
	"Alasdair G Kergon" <agk@redhat.com>
Subject: [dm-devel] [git pull] device mapper changes for 5.11
Date: Tue, 22 Dec 2020 10:18:24 -0500	[thread overview]
Message-ID: <20201222151823.GA17999@redhat.com> (raw)

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%)

--
dm-devel mailing list
dm-devel@redhat.com
https://www.redhat.com/mailman/listinfo/dm-devel


WARNING: multiple messages have this Message-ID (diff)
From: Mike Snitzer <snitzer@redhat.com>
To: Linus Torvalds <torvalds@linux-foundation.org>
Cc: dm-devel@redhat.com, linux-block@vger.kernel.org,
	"Alasdair G Kergon" <agk@redhat.com>,
	"Antonio Quartulli" <a@unstable.cc>,
	"Hyeongseok Kim" <hyeongseok@gmail.com>,
	"Jeffle Xu" <jefflexu@linux.alibaba.com>,
	"Mickaël Salaün" <mic@linux.microsoft.com>,
	"Mike Christie" <michael.christie@oracle.com>,
	"Qinglang Miao" <miaoqinglang@huawei.com>,
	"Rikard Falkeborn" <rikard.falkeborn@gmail.com>,
	"Zheng Yongjun" <zhengyongjun3@huawei.com>
Subject: [git pull] device mapper changes for 5.11
Date: Tue, 22 Dec 2020 10:18:24 -0500	[thread overview]
Message-ID: <20201222151823.GA17999@redhat.com> (raw)

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%)


             reply	other threads:[~2020-12-22 15:18 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-12-22 15:18 Mike Snitzer [this message]
2020-12-22 15:18 ` [git pull] device mapper changes for 5.11 Mike Snitzer
2020-12-22 22:24 ` [dm-devel] " pr-tracker-bot
2020-12-22 22:24   ` pr-tracker-bot

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20201222151823.GA17999@redhat.com \
    --to=snitzer@redhat.com \
    --cc=a@unstable.cc \
    --cc=agk@redhat.com \
    --cc=dm-devel@redhat.com \
    --cc=hyeongseok@gmail.com \
    --cc=jefflexu@linux.alibaba.com \
    --cc=linux-block@vger.kernel.org \
    --cc=miaoqinglang@huawei.com \
    --cc=mic@linux.microsoft.com \
    --cc=michael.christie@oracle.com \
    --cc=rikard.falkeborn@gmail.com \
    --cc=torvalds@linux-foundation.org \
    --cc=zhengyongjun3@huawei.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.