All of lore.kernel.org
 help / color / mirror / Atom feed
* [GIT PULL] nvme fixes for Linux 6.18
@ 2025-10-16 18:52 Keith Busch
  2025-10-17  1:47 ` Jens Axboe
  0 siblings, 1 reply; 4+ messages in thread
From: Keith Busch @ 2025-10-16 18:52 UTC (permalink / raw)
  To: axboe; +Cc: hch, sagi, linux-nvme

The following changes since commit 455281c0ef4e2cabdfe2e8b83fa6010d5210811c:

  loop: remove redundant __GFP_NOWARN flag (2025-10-08 06:27:53 -0600)

are available in the Git repository at:

  git://git.infradead.org/nvme.git tags/nvme-6.18-2025-10-16

for you to fetch changes up to 5a869d017793399fd1d2609ff27e900534173eb3:

  nvme/tcp: handle tls partially sent records in write_space() (2025-10-16 11:32:04 -0700)

----------------------------------------------------------------
nvme fixes for Linux 6.18

 - iostats accounting fixed on multipath retries (Amit)
 - secure concatenation response fixup (Martin)
 - tls partial record fixup (Wilfred)

----------------------------------------------------------------
Amit Chaudhary (1):
      nvme-multipath: Skip nr_active increments in RETRY disposition

Martin George (1):
      nvme-auth: update sc_c in host response

Wilfred Mallawa (1):
      nvme/tcp: handle tls partially sent records in write_space()

 drivers/nvme/host/auth.c      | 6 +++++-
 drivers/nvme/host/multipath.c | 6 ++++--
 drivers/nvme/host/tcp.c       | 3 +++
 3 files changed, 12 insertions(+), 3 deletions(-)


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

* Re: [GIT PULL] nvme fixes for Linux 6.18
  2025-10-16 18:52 [GIT PULL] nvme fixes for Linux 6.18 Keith Busch
@ 2025-10-17  1:47 ` Jens Axboe
  0 siblings, 0 replies; 4+ messages in thread
From: Jens Axboe @ 2025-10-17  1:47 UTC (permalink / raw)
  To: Keith Busch; +Cc: hch, sagi, linux-nvme

On 10/16/25 12:52 PM, Keith Busch wrote:
> The following changes since commit 455281c0ef4e2cabdfe2e8b83fa6010d5210811c:
> 
>   loop: remove redundant __GFP_NOWARN flag (2025-10-08 06:27:53 -0600)
> 
> are available in the Git repository at:
> 
>   git://git.infradead.org/nvme.git tags/nvme-6.18-2025-10-16
> 
> for you to fetch changes up to 5a869d017793399fd1d2609ff27e900534173eb3:
> 
>   nvme/tcp: handle tls partially sent records in write_space() (2025-10-16 11:32:04 -0700)
> 
> ----------------------------------------------------------------
> nvme fixes for Linux 6.18
> 
>  - iostats accounting fixed on multipath retries (Amit)
>  - secure concatenation response fixup (Martin)
>  - tls partial record fixup (Wilfred)

Pulled, thanks.

-- 
Jens Axboe



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

* [GIT PULL] nvme fixes for Linux 6.18
@ 2025-11-20 15:35 Keith Busch
  2025-11-20 15:42 ` Jens Axboe
  0 siblings, 1 reply; 4+ messages in thread
From: Keith Busch @ 2025-11-20 15:35 UTC (permalink / raw)
  To: axboe; +Cc: linux-nvme, hch, sagi

The following changes since commit 0194b65ab571430130a11f8500894bb88f7af2c0:

  nvme-pci: use blk_map_iter for p2p metadata (2025-10-22 19:46:25 -0700)

are available in the Git repository at:

  git://git.infradead.org/nvme.git tags/nvme-6.18-2025-11-20

for you to fetch changes up to 0a2c5495b6d1ecb0fa18ef6631450f391a888256:

  nvme: nvme-fc: Ensure ->ioerr_work is cancelled in nvme_fc_delete_ctrl() (2025-11-17 09:00:42 -0800)

----------------------------------------------------------------
nvme fixes for Linux 6.18

 - Admin queue use-after-free fix (Keith)
 - Target authentication fix (Alistar)
 - Multipath lockdep fix (Shin'ichiro)
 - FC transport teardown fixes (Ewan)

----------------------------------------------------------------
Alistair Francis (1):
      nvmet-auth: update sc_c in target host hash calculation

Ewan D. Milne (2):
      nvme: nvme-fc: move tagset removal to nvme_fc_delete_ctrl()
      nvme: nvme-fc: Ensure ->ioerr_work is cancelled in nvme_fc_delete_ctrl()

Keith Busch (1):
      nvme: fix admin request_queue lifetime

Shin'ichiro Kawasaki (1):
      nvme-multipath: fix lockdep WARN due to partition scan work

 drivers/nvme/host/core.c               |  3 ++-
 drivers/nvme/host/fc.c                 | 15 ++++++++-------
 drivers/nvme/host/multipath.c          |  2 +-
 drivers/nvme/target/auth.c             |  4 ++--
 drivers/nvme/target/fabrics-cmd-auth.c |  1 +
 drivers/nvme/target/nvmet.h            |  1 +
 6 files changed, 15 insertions(+), 11 deletions(-)


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

* Re: [GIT PULL] nvme fixes for Linux 6.18
  2025-11-20 15:35 Keith Busch
@ 2025-11-20 15:42 ` Jens Axboe
  0 siblings, 0 replies; 4+ messages in thread
From: Jens Axboe @ 2025-11-20 15:42 UTC (permalink / raw)
  To: Keith Busch; +Cc: linux-nvme, hch, sagi

On 11/20/25 8:35 AM, Keith Busch wrote:
> The following changes since commit 0194b65ab571430130a11f8500894bb88f7af2c0:
> 
>   nvme-pci: use blk_map_iter for p2p metadata (2025-10-22 19:46:25 -0700)
> 
> are available in the Git repository at:
> 
>   git://git.infradead.org/nvme.git tags/nvme-6.18-2025-11-20
> 
> for you to fetch changes up to 0a2c5495b6d1ecb0fa18ef6631450f391a888256:
> 
>   nvme: nvme-fc: Ensure ->ioerr_work is cancelled in nvme_fc_delete_ctrl() (2025-11-17 09:00:42 -0800)
> 
> ----------------------------------------------------------------
> nvme fixes for Linux 6.18
> 
>  - Admin queue use-after-free fix (Keith)
>  - Target authentication fix (Alistar)
>  - Multipath lockdep fix (Shin'ichiro)
>  - FC transport teardown fixes (Ewan)

Pulled, thanks.

-- 
Jens Axboe



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

end of thread, other threads:[~2025-11-20 15:42 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-10-16 18:52 [GIT PULL] nvme fixes for Linux 6.18 Keith Busch
2025-10-17  1:47 ` Jens Axboe
  -- strict thread matches above, loose matches on Subject: below --
2025-11-20 15:35 Keith Busch
2025-11-20 15:42 ` 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.