All of lore.kernel.org
 help / color / mirror / Atom feed
* [dm-devel] [git pull] device mapper fixes for 5.11-rc4
@ 2021-01-15 23:43 ` Mike Snitzer
  0 siblings, 0 replies; 4+ messages in thread
From: Mike Snitzer @ 2021-01-15 23:43 UTC (permalink / raw)
  To: Linus Torvalds
  Cc: Arnd Bergmann, Anthony Iliopoulos, linux-block, dm-devel,
	Mikulas Patocka, Ignat Korchagin, Akilesh Kailash,
	Alasdair G Kergon

Hi Linus,

The following changes since commit e71ba9452f0b5b2e8dc8aa5445198cd9214a6a62:

  Linux 5.11-rc2 (2021-01-03 15:55:30 -0800)

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-fixes-1

for you to fetch changes up to c87a95dc28b1431c7e77e2c0c983cf37698089d2:

  dm crypt: defer decryption to a tasklet if interrupts disabled
  (2021-01-14 09:54:37 -0500)

Please pull, thanks.
Mike

----------------------------------------------------------------
- Fix DM-raid's raid1 discard limits so discards work.

- Select missing Kconfig dependencies for DM integrity and zoned
  targets.

- 4 fixes for DM crypt target's support to optionally bypass
  kcryptd workqueues.

- Fix DM snapshot merge supports missing data flushes before
  committing metadata.

- Fix DM integrity data device flushing when external metadata is
  used.

- Fix DM integrity's maximum number of supported constructor arguments
  that user can request when creating an integrity device.

- Eliminate DM core ioctl logging noise when an ioctl is issued
  without required CAP_SYS_RAWIO permission.

----------------------------------------------------------------
Akilesh Kailash (1):
      dm snapshot: flush merged data before committing metadata

Anthony Iliopoulos (1):
      dm integrity: select CRYPTO_SKCIPHER

Arnd Bergmann (1):
      dm zoned: select CONFIG_CRC32

Ignat Korchagin (4):
      dm crypt: do not wait for backlogged crypto request completion in softirq
      dm crypt: use GFP_ATOMIC when allocating crypto requests from softirq
      dm crypt: do not call bio_endio() from the dm-crypt tasklet
      dm crypt: defer decryption to a tasklet if interrupts disabled

Mike Snitzer (2):
      dm raid: fix discard limits for raid1
      dm: eliminate potential source of excessive kernel log noise

Mikulas Patocka (2):
      dm integrity: fix flush with external metadata device
      dm integrity: fix the maximum number of arguments

 drivers/md/Kconfig        |   2 +
 drivers/md/dm-bufio.c     |   6 ++
 drivers/md/dm-crypt.c     | 170 +++++++++++++++++++++++++++++++++++++++++-----
 drivers/md/dm-integrity.c |  62 +++++++++++++----
 drivers/md/dm-raid.c      |   6 +-
 drivers/md/dm-snap.c      |  24 +++++++
 drivers/md/dm.c           |   2 +-
 include/linux/dm-bufio.h  |   1 +
 8 files changed, 239 insertions(+), 34 deletions(-)

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


^ permalink raw reply	[flat|nested] 4+ messages in thread

* [git pull] device mapper fixes for 5.11-rc4
@ 2021-01-15 23:43 ` Mike Snitzer
  0 siblings, 0 replies; 4+ messages in thread
From: Mike Snitzer @ 2021-01-15 23:43 UTC (permalink / raw)
  To: Linus Torvalds
  Cc: dm-devel, linux-block, Alasdair G Kergon, Akilesh Kailash,
	Anthony Iliopoulos, Arnd Bergmann, Ignat Korchagin,
	Mikulas Patocka

Hi Linus,

The following changes since commit e71ba9452f0b5b2e8dc8aa5445198cd9214a6a62:

  Linux 5.11-rc2 (2021-01-03 15:55:30 -0800)

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-fixes-1

for you to fetch changes up to c87a95dc28b1431c7e77e2c0c983cf37698089d2:

  dm crypt: defer decryption to a tasklet if interrupts disabled
  (2021-01-14 09:54:37 -0500)

Please pull, thanks.
Mike

----------------------------------------------------------------
- Fix DM-raid's raid1 discard limits so discards work.

- Select missing Kconfig dependencies for DM integrity and zoned
  targets.

- 4 fixes for DM crypt target's support to optionally bypass
  kcryptd workqueues.

- Fix DM snapshot merge supports missing data flushes before
  committing metadata.

- Fix DM integrity data device flushing when external metadata is
  used.

- Fix DM integrity's maximum number of supported constructor arguments
  that user can request when creating an integrity device.

- Eliminate DM core ioctl logging noise when an ioctl is issued
  without required CAP_SYS_RAWIO permission.

----------------------------------------------------------------
Akilesh Kailash (1):
      dm snapshot: flush merged data before committing metadata

Anthony Iliopoulos (1):
      dm integrity: select CRYPTO_SKCIPHER

Arnd Bergmann (1):
      dm zoned: select CONFIG_CRC32

Ignat Korchagin (4):
      dm crypt: do not wait for backlogged crypto request completion in softirq
      dm crypt: use GFP_ATOMIC when allocating crypto requests from softirq
      dm crypt: do not call bio_endio() from the dm-crypt tasklet
      dm crypt: defer decryption to a tasklet if interrupts disabled

Mike Snitzer (2):
      dm raid: fix discard limits for raid1
      dm: eliminate potential source of excessive kernel log noise

Mikulas Patocka (2):
      dm integrity: fix flush with external metadata device
      dm integrity: fix the maximum number of arguments

 drivers/md/Kconfig        |   2 +
 drivers/md/dm-bufio.c     |   6 ++
 drivers/md/dm-crypt.c     | 170 +++++++++++++++++++++++++++++++++++++++++-----
 drivers/md/dm-integrity.c |  62 +++++++++++++----
 drivers/md/dm-raid.c      |   6 +-
 drivers/md/dm-snap.c      |  24 +++++++
 drivers/md/dm.c           |   2 +-
 include/linux/dm-bufio.h  |   1 +
 8 files changed, 239 insertions(+), 34 deletions(-)


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [dm-devel] [git pull] device mapper fixes for 5.11-rc4
  2021-01-15 23:43 ` Mike Snitzer
@ 2021-01-16  2:09   ` pr-tracker-bot
  -1 siblings, 0 replies; 4+ messages in thread
From: pr-tracker-bot @ 2021-01-16  2:09 UTC (permalink / raw)
  To: Mike Snitzer
  Cc: Arnd Bergmann, Anthony Iliopoulos, linux-block, dm-devel,
	Mikulas Patocka, Ignat Korchagin, Akilesh Kailash, Linus Torvalds,
	Alasdair G Kergon

The pull request you sent on Fri, 15 Jan 2021 18:43:47 -0500:

> git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git tags/for-5.11/dm-fixes-1

has been merged into torvalds/linux.git:
https://git.kernel.org/torvalds/c/1d94330a437a573cfdf848f6743b1ed169242c8a

Thank you!

-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/prtracker.html

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


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [dm-devel] [git pull] device mapper fixes for 5.11-rc4
@ 2021-01-16  2:09   ` pr-tracker-bot
  0 siblings, 0 replies; 4+ messages in thread
From: pr-tracker-bot @ 2021-01-16  2:09 UTC (permalink / raw)
  To: Mike Snitzer
  Cc: Linus Torvalds, Arnd Bergmann, Anthony Iliopoulos, linux-block,
	dm-devel, Mikulas Patocka, Ignat Korchagin, Akilesh Kailash,
	Alasdair G Kergon

The pull request you sent on Fri, 15 Jan 2021 18:43:47 -0500:

> git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git tags/for-5.11/dm-fixes-1

has been merged into torvalds/linux.git:
https://git.kernel.org/torvalds/c/1d94330a437a573cfdf848f6743b1ed169242c8a

Thank you!

-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/prtracker.html

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2021-01-16  2:10 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-01-15 23:43 [dm-devel] [git pull] device mapper fixes for 5.11-rc4 Mike Snitzer
2021-01-15 23:43 ` Mike Snitzer
2021-01-16  2:09 ` [dm-devel] " pr-tracker-bot
2021-01-16  2:09   ` pr-tracker-bot

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.