All of lore.kernel.org
 help / color / mirror / Atom feed
* [GIT PULL] nvme fixes for Linux 7.1
@ 2026-05-14 20:19 Keith Busch
  2026-05-15  1:15 ` Jens Axboe
  0 siblings, 1 reply; 4+ messages in thread
From: Keith Busch @ 2026-05-14 20:19 UTC (permalink / raw)
  To: axboe; +Cc: hch, sagi, linux-nvme

The following changes since commit 86f33ca9bea30cf011f2b1edad4593faea9c6e98:

  ublk: validate physical_bs_shift, io_min_shift and io_opt_shift (2026-05-06 04:42:06 -0600)

are available in the Git repository at:

  git://git.infradead.org/nvme.git tags/nvme-7.1-2026-05-14

for you to fetch changes up to a6ab75639e23169a741b0b2e12191fd8acb32c73:

  nvme-apple: Reset q->sq_tail during queue init (2026-05-14 07:40:35 -0700)

----------------------------------------------------------------
nvme fixes for Linux 7.1

 - Fix memory leak on a passthrough integrity mapping failure (Keith)
 - Hide secrets behind debug option (Hannes)
 - Fix pci use-after-free for host memory buffer (Chia-Lin Kao)
 - Fix tcp taregt use-after-free for data digest  (Sagi)
 - Revert a mistaken quirk (Alan Cui)
 - Fix uevent and controller state race condition (Maurizio)
 - Fix apple submission queue re-initialization (Nick Chan)

----------------------------------------------------------------
AlanCui4080 (1):
      Revert "nvme: add quirk NVME_QUIRK_IGNORE_DEV_SUBNQN for 144d:a808"

Chia-Lin Kao (AceLan) (1):
      nvme-pci: fix use-after-free in nvme_free_host_mem()

Hannes Reinecke (1):
      nvmet-auth: Do not print DH-HMAC-CHAP secrets

Keith Busch (2):
      nvme: make prp passthrough usage less scary
      nvme: fix bio leak on mapping failure

Maurizio Lombardi (1):
      nvme: fix race condition between connected uevent and STARTED_ONCE flag

Nick Chan (1):
      nvme-apple: Reset q->sq_tail during queue init

Sagi Grimberg (1):
      nvmet-tcp: Fix potential UAF when ddgst mismatch

 drivers/nvme/host/apple.c   |  1 +
 drivers/nvme/host/core.c    |  6 +++++-
 drivers/nvme/host/ioctl.c   | 18 ++++--------------
 drivers/nvme/host/pci.c     |  8 ++++----
 drivers/nvme/target/Kconfig |  9 +++++++++
 drivers/nvme/target/auth.c  | 13 ++++++++-----
 drivers/nvme/target/tcp.c   |  4 +++-
 7 files changed, 34 insertions(+), 25 deletions(-)



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

* Re: [GIT PULL] nvme fixes for Linux 7.1
  2026-05-14 20:19 [GIT PULL] nvme fixes for Linux 7.1 Keith Busch
@ 2026-05-15  1:15 ` Jens Axboe
  0 siblings, 0 replies; 4+ messages in thread
From: Jens Axboe @ 2026-05-15  1:15 UTC (permalink / raw)
  To: Keith Busch; +Cc: hch, sagi, linux-nvme

On 5/14/26 2:19 PM, Keith Busch wrote:
> ----------------------------------------------------------------
> nvme fixes for Linux 7.1
> 
>  - Fix memory leak on a passthrough integrity mapping failure (Keith)
>  - Hide secrets behind debug option (Hannes)
>  - Fix pci use-after-free for host memory buffer (Chia-Lin Kao)
>  - Fix tcp taregt use-after-free for data digest  (Sagi)
>  - Revert a mistaken quirk (Alan Cui)
>  - Fix uevent and controller state race condition (Maurizio)
>  - Fix apple submission queue re-initialization (Nick Chan)

Pulled, thanks.

-- 
Jens Axboe


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

* [GIT PULL] nvme fixes for Linux 7.1
@ 2026-05-21 15:04 Keith Busch
  2026-05-21 15:13 ` Jens Axboe
  0 siblings, 1 reply; 4+ messages in thread
From: Keith Busch @ 2026-05-21 15:04 UTC (permalink / raw)
  To: axboe; +Cc: linux-nvme, hch

The following changes since commit 431e40042d3599559e588b8946bb28bd440b4f65:

  bio-integrity-fs: pass data iter to bio_integrity_verify() (2026-05-19 11:38:21 -0600)

are available in the Git repository at:

  git://git.infradead.org/nvme.git tags/nvme-7.1-2026-05-21

for you to fetch changes up to 1bf86336e4b6cf40873fda47a7fe191446864937:

  nvme-pci: fix dma mapping leak on data setup error (2026-05-21 07:49:05 -0700)

----------------------------------------------------------------
nvme fixes for Linux 7.1

 - Fix memory leak for peer-to-peer addresses
 - Fix dma map leaks on resource errors

----------------------------------------------------------------
Keith Busch (2):
      nvme-pci: fix dma_vecs leak on p2p memory
      nvme-pci: fix dma mapping leak on data setup error

 drivers/nvme/host/pci.c | 34 ++++++++++++++++++++++++++++++----
 1 file changed, 30 insertions(+), 4 deletions(-)



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

* Re: [GIT PULL] nvme fixes for Linux 7.1
  2026-05-21 15:04 Keith Busch
@ 2026-05-21 15:13 ` Jens Axboe
  0 siblings, 0 replies; 4+ messages in thread
From: Jens Axboe @ 2026-05-21 15:13 UTC (permalink / raw)
  To: Keith Busch; +Cc: linux-nvme, hch

On 5/21/26 9:04 AM, Keith Busch wrote:
> The following changes since commit 431e40042d3599559e588b8946bb28bd440b4f65:
> 
>   bio-integrity-fs: pass data iter to bio_integrity_verify() (2026-05-19 11:38:21 -0600)
> 
> are available in the Git repository at:
> 
>   git://git.infradead.org/nvme.git tags/nvme-7.1-2026-05-21
> 
> for you to fetch changes up to 1bf86336e4b6cf40873fda47a7fe191446864937:
> 
>   nvme-pci: fix dma mapping leak on data setup error (2026-05-21 07:49:05 -0700)
> 
> ----------------------------------------------------------------
> nvme fixes for Linux 7.1
> 
>  - Fix memory leak for peer-to-peer addresses
>  - Fix dma map leaks on resource errors

Pulled, thanks.

-- 
Jens Axboe



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

end of thread, other threads:[~2026-05-21 15:13 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-05-14 20:19 [GIT PULL] nvme fixes for Linux 7.1 Keith Busch
2026-05-15  1:15 ` Jens Axboe
  -- strict thread matches above, loose matches on Subject: below --
2026-05-21 15:04 Keith Busch
2026-05-21 15:13 ` Jens Axboe

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.