linux-block.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [GIT PULL] nvme fixes for Linux 6.16
@ 2025-07-03 11:51 Christoph Hellwig
  2025-07-03 15:42 ` Jens Axboe
  0 siblings, 1 reply; 4+ messages in thread
From: Christoph Hellwig @ 2025-07-03 11:51 UTC (permalink / raw)
  To: Jens Axboe
  Cc: linux-block, Keith Busch, Jens Axboe, Sagi Grimberg,
	Chaitanya Kulkarni, linux-nvme

The following changes since commit c007062188d8e402c294117db53a24b2bed2b83f:

  block: fix false warning in bdev_count_inflight_rw() (2025-06-26 07:34:11 -0600)

are available in the Git repository at:

  git://git.infradead.org/nvme.git tags/nvme-6.16-2025-07-03

for you to fetch changes up to d6811074203b13f715ce2480ac64c5b1c773f2a5:

  nvme-multipath: fix suspicious RCU usage warning (2025-07-01 08:17:02 +0200)

----------------------------------------------------------------
nvme fixes for Linux 6.16

 - fix incorrect cdw15 value in passthru error logging (Alok Tiwari)
 - fix memory leak of bio integrity in nvmet (Dmitry Bogdanov)
 - refresh visible attrs after being checked (Eugen Hristev)
 - fix suspicious RCU usage warning in the multipath code (Geliang Tang)
 - correctly account for namespace head reference counter (Nilay Shroff)

----------------------------------------------------------------
Alok Tiwari (1):
      nvme: Fix incorrect cdw15 value in passthru error logging

Dmitry Bogdanov (1):
      nvmet: fix memory leak of bio integrity

Eugen Hristev (1):
      nvme-pci: refresh visible attrs after being checked

Geliang Tang (1):
      nvme-multipath: fix suspicious RCU usage warning

Nilay Shroff (1):
      nvme: correctly account for namespace head reference counter

 drivers/nvme/host/core.c      | 18 ++++++++++++++++--
 drivers/nvme/host/multipath.c |  8 ++++++--
 drivers/nvme/host/pci.c       |  6 ++++--
 drivers/nvme/target/nvmet.h   |  2 ++
 4 files changed, 28 insertions(+), 6 deletions(-)

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

* Re: [GIT PULL] nvme fixes for Linux 6.16
  2025-07-03 11:51 [GIT PULL] nvme fixes for Linux 6.16 Christoph Hellwig
@ 2025-07-03 15:42 ` Jens Axboe
  0 siblings, 0 replies; 4+ messages in thread
From: Jens Axboe @ 2025-07-03 15:42 UTC (permalink / raw)
  To: Christoph Hellwig
  Cc: linux-block, Keith Busch, Jens Axboe, Sagi Grimberg,
	Chaitanya Kulkarni, linux-nvme

On 7/3/25 5:51 AM, Christoph Hellwig wrote:
> The following changes since commit c007062188d8e402c294117db53a24b2bed2b83f:
> 
>   block: fix false warning in bdev_count_inflight_rw() (2025-06-26 07:34:11 -0600)
> 
> are available in the Git repository at:
> 
>   git://git.infradead.org/nvme.git tags/nvme-6.16-2025-07-03
> 
> for you to fetch changes up to d6811074203b13f715ce2480ac64c5b1c773f2a5:
> 
>   nvme-multipath: fix suspicious RCU usage warning (2025-07-01 08:17:02 +0200)
> 
> ----------------------------------------------------------------
> nvme fixes for Linux 6.16
> 
>  - fix incorrect cdw15 value in passthru error logging (Alok Tiwari)
>  - fix memory leak of bio integrity in nvmet (Dmitry Bogdanov)
>  - refresh visible attrs after being checked (Eugen Hristev)
>  - fix suspicious RCU usage warning in the multipath code (Geliang Tang)
>  - correctly account for namespace head reference counter (Nilay Shroff)

Pulled, thanks.

-- 
Jens Axboe


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

* [GIT PULL] nvme fixes for Linux 6.16
@ 2025-07-17 11:36 Christoph Hellwig
  2025-07-17 11:59 ` Jens Axboe
  0 siblings, 1 reply; 4+ messages in thread
From: Christoph Hellwig @ 2025-07-17 11:36 UTC (permalink / raw)
  To: Jens Axboe
  Cc: linux-block, Keith Busch, Jens Axboe, Sagi Grimberg,
	Chaitanya Kulkarni, linux-nvme

The following changes since commit 3051247e4faa32a3d90c762a243c2c62dde310db:

  block: fix kobject leak in blk_unregister_queue (2025-07-11 20:39:23 -0600)

are available in the Git repository at:

  git://git.infradead.org/nvme.git tags/nvme-6.16-2025-07-17

for you to fetch changes up to 0523c6cc87e558c50ff4489c87c54c55068b1169:

  nvmet-tcp: fix callback lock for TLS handshake (2025-07-15 09:49:13 +0200)

----------------------------------------------------------------
nvme-fix for Linux 6.16

 - revert the cross-controller atomic write size validation that caused
   regressions (Christoph Hellwig)
 - fix endianness of command word prints in nvme_log_err_passthru()
   (John Garry)
 - fix callback lock for TLS handshake (Maurizio Lombardi)
 - fix misaccounting of nvme-mpath inflight I/O (Yu Kuai)
 - fix inconsistent RCU list manipulation in nvme_ns_add_to_ctrl_list()
   (Zheng Qixing)

----------------------------------------------------------------
Christoph Hellwig (1):
      nvme: revert the cross-controller atomic write size validation

John Garry (1):
      nvme: fix endianness of command word prints in nvme_log_err_passthru()

Maurizio Lombardi (1):
      nvmet-tcp: fix callback lock for TLS handshake

Yu Kuai (1):
      nvme: fix misaccounting of nvme-mpath inflight I/O

Zheng Qixing (1):
      nvme: fix inconsistent RCU list manipulation in nvme_ns_add_to_ctrl_list()

 drivers/nvme/host/core.c  | 27 +++++++++++----------------
 drivers/nvme/target/tcp.c |  4 ++--
 2 files changed, 13 insertions(+), 18 deletions(-)

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

* Re: [GIT PULL] nvme fixes for Linux 6.16
  2025-07-17 11:36 Christoph Hellwig
@ 2025-07-17 11:59 ` Jens Axboe
  0 siblings, 0 replies; 4+ messages in thread
From: Jens Axboe @ 2025-07-17 11:59 UTC (permalink / raw)
  To: Christoph Hellwig
  Cc: linux-block, Keith Busch, Jens Axboe, Sagi Grimberg,
	Chaitanya Kulkarni, linux-nvme

On 7/17/25 5:36 AM, Christoph Hellwig wrote:
> The following changes since commit 3051247e4faa32a3d90c762a243c2c62dde310db:
> 
>   block: fix kobject leak in blk_unregister_queue (2025-07-11 20:39:23 -0600)
> 
> are available in the Git repository at:
> 
>   git://git.infradead.org/nvme.git tags/nvme-6.16-2025-07-17
> 
> for you to fetch changes up to 0523c6cc87e558c50ff4489c87c54c55068b1169:
> 
>   nvmet-tcp: fix callback lock for TLS handshake (2025-07-15 09:49:13 +0200)
> 
> ----------------------------------------------------------------
> nvme-fix for Linux 6.16
> 
>  - revert the cross-controller atomic write size validation that caused
>    regressions (Christoph Hellwig)
>  - fix endianness of command word prints in nvme_log_err_passthru()
>    (John Garry)
>  - fix callback lock for TLS handshake (Maurizio Lombardi)
>  - fix misaccounting of nvme-mpath inflight I/O (Yu Kuai)
>  - fix inconsistent RCU list manipulation in nvme_ns_add_to_ctrl_list()
>    (Zheng Qixing)

Pulled, thanks.

-- 
Jens Axboe


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

end of thread, other threads:[~2025-07-17 11:59 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-07-03 11:51 [GIT PULL] nvme fixes for Linux 6.16 Christoph Hellwig
2025-07-03 15:42 ` Jens Axboe
  -- strict thread matches above, loose matches on Subject: below --
2025-07-17 11:36 Christoph Hellwig
2025-07-17 11:59 ` Jens Axboe

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).