All of lore.kernel.org
 help / color / mirror / Atom feed
From: Mike Snitzer <snitzer@kernel.org>
To: Linus Torvalds <torvalds@linux-foundation.org>
Cc: dm-devel@lists.linux.dev, linux-block@vger.kernel.org,
	Alasdair G Kergon <agk@redhat.com>,
	Mikulas Patocka <mpatocka@redhat.com>,
	Benjamin Marzinski <bmarzins@redhat.com>,
	Christian Loehle <christian.loehle@arm.com>,
	Damien Le Moal <dlemoal@kernel.org>,
	Eric Biggers <ebiggers@google.com>,
	Justin Stitt <justinstitt@google.com>
Subject: [git pull] device mapper changes for 6.7
Date: Wed, 1 Nov 2023 12:19:34 -0400	[thread overview]
Message-ID: <ZUJ6lh4bDU/KqKBc@redhat.com> (raw)

Hi Linus,

The following changes since commit 3da5d2de92387a8322965c7fb1365f7cae690e5a:

  MAINTAINERS: update the dm-devel mailing list (2023-10-06 19:05:57 -0400)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git tags/for-6.7/dm-changes

for you to fetch changes up to 9793c269da6cd339757de6ba5b2c8681b54c99af:

  dm crypt: account large pages in cc->n_allocated_pages (2023-10-31 14:25:06 -0400)

Please pull, thanks.
Mike

----------------------------------------------------------------
- Update DM core to directly call the map function for both the linear
  and stripe targets; which are provided by DM core.

- Various updates to use new safer string functions.

- Update DM core to respect REQ_NOWAIT flag in normal bios so that
  memory allocations are always attempted with GFP_NOWAIT.

- Add Mikulas Patocka to MAINTAINERS as a DM maintainer!

- Improve DM delay target's handling of short delays (< 50ms) by using
  a kthread to check expiration of IOs rather than timers and a wq.

- Update the DM error target so that it works with zoned storage. This
  helps xfstests to provide proper IO error handling coverage when
  testing a filesystem with native zoned storage support.

- Update both DM crypt and integrity targets to improve performance by
  using crypto_shash_digest() rather than init+update+final sequence.

- Fix DM crypt target by backfilling missing memory allocation
  accounting for compound pages.
-----BEGIN PGP SIGNATURE-----

iQEzBAABCAAdFiEEJfWUX4UqZ4x1O2wixSPxCi2dA1oFAmVCeG8ACgkQxSPxCi2d
A1oXAAgAnT0mb1psEwDhKiJG26bUeJDJHIaNTPPw4UpCvKEWU7lTxzJUmthnwLZI
D+JnkrenAfGppdsFkHh1ogTBz8r60aeBTY31SUoCUVS/clwHxRstLCkSE2655an3
WNgrGItta5BRtcgTMxU7bmqVOD4Xyw704L7BK5CM4zKBQuXJtkegylALhdXvYSjs
mvHWoPczFW6Rv79CkF0uTkon7Ji041BvKVjbp+fYQf9Pul5d6S1v4Jrvlo2EqblU
6OM75OosNgziQhdw7faVOgFCVkQfLkEeYsJ47dBOjpC3+sbyKENbC4r+ZmkCZGyI
uJERswpmAkW7pp+Ab6sqG582DXvPvA==
=PPwQ
-----END PGP SIGNATURE-----

----------------------------------------------------------------
Christian Loehle (1):
      dm delay: for short delays, use kthread instead of timers and wq

Damien Le Moal (1):
      dm error: Add support for zoned block devices

Eric Biggers (2):
      dm crypt: use crypto_shash_digest() in crypt_iv_tcw_whitening()
      dm integrity: use crypto_shash_digest() in sb_mac()

Justin Stitt (4):
      dm cache metadata: replace deprecated strncpy with strscpy
      dm crypt: replace open-coded kmemdup_nul
      dm ioctl: replace deprecated strncpy with strscpy_pad
      dm log userspace: replace deprecated strncpy with strscpy

Mike Snitzer (3):
      dm: enhance alloc_multiple_bios() to be more versatile
      dm: respect REQ_NOWAIT flag in normal bios issued to DM
      MAINTAINERS: add Mikulas Patocka as a DM maintainer

Mikulas Patocka (3):
      dm: shortcut the calls to linear_map and stripe_map
      dm: make __send_duplicate_bios return unsigned int
      dm crypt: account large pages in cc->n_allocated_pages

 MAINTAINERS                        |   1 +
 drivers/md/dm-cache-metadata.c     |   6 +-
 drivers/md/dm-crypt.c              |  26 ++++----
 drivers/md/dm-delay.c              | 103 ++++++++++++++++++++++++++-----
 drivers/md/dm-integrity.c          |  30 +++------
 drivers/md/dm-ioctl.c              |   4 +-
 drivers/md/dm-linear.c             |   2 +-
 drivers/md/dm-log-userspace-base.c |   2 +-
 drivers/md/dm-stripe.c             |   2 +-
 drivers/md/dm-table.c              |  23 ++++++-
 drivers/md/dm-target.c             | 106 +++++++++++++++++++++++++++++++-
 drivers/md/dm.c                    | 121 ++++++++++++++++++++++---------------
 drivers/md/dm.h                    |   2 +
 13 files changed, 321 insertions(+), 107 deletions(-)

             reply	other threads:[~2023-11-01 16:20 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-11-01 16:19 Mike Snitzer [this message]
2023-11-02  0:01 ` [git pull] device mapper changes for 6.7 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=ZUJ6lh4bDU/KqKBc@redhat.com \
    --to=snitzer@kernel.org \
    --cc=agk@redhat.com \
    --cc=bmarzins@redhat.com \
    --cc=christian.loehle@arm.com \
    --cc=dlemoal@kernel.org \
    --cc=dm-devel@lists.linux.dev \
    --cc=ebiggers@google.com \
    --cc=justinstitt@google.com \
    --cc=linux-block@vger.kernel.org \
    --cc=mpatocka@redhat.com \
    --cc=torvalds@linux-foundation.org \
    /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.