linux-nvme.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [GIT PULL] nvme updates for Linux 6.17
@ 2025-07-22  6:04 Christoph Hellwig
  2025-07-22 10:55 ` Jens Axboe
  0 siblings, 1 reply; 4+ messages in thread
From: Christoph Hellwig @ 2025-07-22  6:04 UTC (permalink / raw)
  To: Jens Axboe
  Cc: linux-block, Keith Busch, Jens Axboe, Sagi Grimberg,
	Chaitanya Kulkarni, linux-nvme

The following changes since commit ab17ead0e0ee8650cd1cf4e481b1ed0ee9731956:

  block: fix blk_zone_append_update_request_bio() kernel-doc (2025-07-16 10:02:18 -0600)

are available in the Git repository at:

  git://git.infradead.org/nvme.git tags/nvme-6.17-2025-07-22

for you to fetch changes up to 5b2c214a95942f7997d1916a4c44017becbc3cac:

  nvme-pci: try function level reset on init failure (2025-07-17 17:46:33 +0200)

----------------------------------------------------------------
nvme updates for Linux 6.17

 - try PCIe function level reset on init failure (Keith Busch)
 - log TLS handshake failures at error level (Maurizio Lombardi)
 - pci-epf: do not complete commands twice if nvmet_req_init() fails
   (Rick Wertenbroek)
 - misc cleanups (Alok Tiwari)

----------------------------------------------------------------
Alok Tiwari (5):
      nvme: fix multiple spelling and grammar issues in host drivers
      nvme: fix incorrect variable in io cqes error message
      nvmet: remove redundant assignment of error code in nvmet_ns_enable()
      nvme: fix typo in status code constant for self-test in progress
      docs: nvme: fix grammar in nvme-pci-endpoint-target.rst

Keith Busch (1):
      nvme-pci: try function level reset on init failure

Maurizio Lombardi (1):
      nvme-tcp: log TLS handshake failures at error level

Rick Wertenbroek (1):
      nvmet: pci-epf: Do not complete commands twice if nvmet_req_init() fails

 Documentation/nvme/nvme-pci-endpoint-target.rst | 22 ++++++++++-----------
 drivers/nvme/host/apple.c                       |  4 ++--
 drivers/nvme/host/constants.c                   |  4 ++--
 drivers/nvme/host/core.c                        |  2 +-
 drivers/nvme/host/fc.c                          | 10 +++++-----
 drivers/nvme/host/nvme.h                        |  2 +-
 drivers/nvme/host/pci.c                         | 26 ++++++++++++++++++++++---
 drivers/nvme/host/rdma.c                        |  2 +-
 drivers/nvme/host/tcp.c                         | 11 ++++++++---
 drivers/nvme/target/core.c                      |  2 --
 drivers/nvme/target/passthru.c                  |  4 ++--
 drivers/nvme/target/pci-epf.c                   | 25 ++++++++++++++++--------
 drivers/nvme/target/zns.c                       |  2 +-
 include/linux/nvme.h                            |  2 +-
 14 files changed, 75 insertions(+), 43 deletions(-)


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

* Re: [GIT PULL] nvme updates for Linux 6.17
  2025-07-22  6:04 [GIT PULL] nvme updates for Linux 6.17 Christoph Hellwig
@ 2025-07-22 10:55 ` Jens Axboe
  0 siblings, 0 replies; 4+ messages in thread
From: Jens Axboe @ 2025-07-22 10:55 UTC (permalink / raw)
  To: Christoph Hellwig
  Cc: linux-block, Keith Busch, Sagi Grimberg, Chaitanya Kulkarni,
	linux-nvme

On 7/22/25 12:04 AM, Christoph Hellwig wrote:
> The following changes since commit ab17ead0e0ee8650cd1cf4e481b1ed0ee9731956:
> 
>   block: fix blk_zone_append_update_request_bio() kernel-doc (2025-07-16 10:02:18 -0600)
> 
> are available in the Git repository at:
> 
>   git://git.infradead.org/nvme.git tags/nvme-6.17-2025-07-22
> 
> for you to fetch changes up to 5b2c214a95942f7997d1916a4c44017becbc3cac:
> 
>   nvme-pci: try function level reset on init failure (2025-07-17 17:46:33 +0200)
> 
> ----------------------------------------------------------------
> nvme updates for Linux 6.17
> 
>  - try PCIe function level reset on init failure (Keith Busch)
>  - log TLS handshake failures at error level (Maurizio Lombardi)
>  - pci-epf: do not complete commands twice if nvmet_req_init() fails
>    (Rick Wertenbroek)
>  - misc cleanups (Alok Tiwari)

Pulled, thanks.

-- 
Jens Axboe



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

* [GIT PULL] nvme updates for Linux 6.17
@ 2025-07-31 14:08 Christoph Hellwig
  2025-07-31 16:55 ` Jens Axboe
  0 siblings, 1 reply; 4+ messages in thread
From: Christoph Hellwig @ 2025-07-31 14:08 UTC (permalink / raw)
  To: Jens Axboe
  Cc: linux-block, Keith Busch, Jens Axboe, Sagi Grimberg,
	Chaitanya Kulkarni, linux-nvme

The following changes since commit 5421681bc3ef13476bd9443379cd69381e8760fa:

  blk-ioc: don't hold queue_lock for ioc_lookup_icq() (2025-07-29 06:26:34 -0600)

are available in the Git repository at:

  git://git.infradead.org/nvme.git tags/nvme-6.17-2025-07-31

for you to fetch changes up to 367c240b0a99c7ada700a44345dd3144a02b6164:

  nvme: fix various comment typos (2025-07-31 06:35:58 -0700)

----------------------------------------------------------------
nvme updates for Linux 6.17

 - add support for getting the FDP featuee in fabrics passthru path
   (Nitesh Shetty)
 - add capability to connect to an administrative controller
   (Kamaljit Singh)
 - fix a leak on sgl setup error (Keith Busch)
 - initialize discovery subsys after debugfs is initialized
   (Mohamed Khalfella)
 - fix various comment typos (Bjorn Helgaas)
 - remove unneeded semicolons (Jiapeng Chong)

----------------------------------------------------------------
Bjorn Helgaas (1):
      nvme: fix various comment typos

Jiapeng Chong (1):
      nvme-auth: remove unneeded semicolon

Kamaljit Singh (1):
      nvme: add capability to connect to an administrative controller

Keith Busch (1):
      nvme-pci: fix leak on sgl setup error

Mohamed Khalfella (1):
      nvmet: initialize discovery subsys after debugfs is initialized

Nitesh Shetty (1):
      nvmet: add support for FDP in fabrics passthru path

 drivers/nvme/host/auth.c       |  4 ++--
 drivers/nvme/host/core.c       | 16 ++++++++++++++++
 drivers/nvme/host/fc.c         |  4 ++--
 drivers/nvme/host/pci.c        |  2 +-
 drivers/nvme/host/tcp.c        |  2 +-
 drivers/nvme/target/core.c     | 12 ++++++------
 drivers/nvme/target/fc.c       |  6 +++---
 drivers/nvme/target/passthru.c |  2 ++
 drivers/nvme/target/rdma.c     |  6 +++---
 9 files changed, 36 insertions(+), 18 deletions(-)


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

* Re: [GIT PULL] nvme updates for Linux 6.17
  2025-07-31 14:08 Christoph Hellwig
@ 2025-07-31 16:55 ` Jens Axboe
  0 siblings, 0 replies; 4+ messages in thread
From: Jens Axboe @ 2025-07-31 16:55 UTC (permalink / raw)
  To: Christoph Hellwig
  Cc: linux-block, Keith Busch, Jens Axboe, Sagi Grimberg,
	Chaitanya Kulkarni, linux-nvme

On 7/31/25 8:08 AM, Christoph Hellwig wrote:
> The following changes since commit 5421681bc3ef13476bd9443379cd69381e8760fa:
> 
>   blk-ioc: don't hold queue_lock for ioc_lookup_icq() (2025-07-29 06:26:34 -0600)
> 
> are available in the Git repository at:
> 
>   git://git.infradead.org/nvme.git tags/nvme-6.17-2025-07-31
> 
> for you to fetch changes up to 367c240b0a99c7ada700a44345dd3144a02b6164:
> 
>   nvme: fix various comment typos (2025-07-31 06:35:58 -0700)
> 
> ----------------------------------------------------------------
> nvme updates for Linux 6.17
> 
>  - add support for getting the FDP featuee in fabrics passthru path
>    (Nitesh Shetty)
>  - add capability to connect to an administrative controller
>    (Kamaljit Singh)
>  - fix a leak on sgl setup error (Keith Busch)
>  - initialize discovery subsys after debugfs is initialized
>    (Mohamed Khalfella)
>  - fix various comment typos (Bjorn Helgaas)
>  - remove unneeded semicolons (Jiapeng Chong)

Pulled, thanks.

-- 
Jens Axboe



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

end of thread, other threads:[~2025-07-31 16:55 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-07-22  6:04 [GIT PULL] nvme updates for Linux 6.17 Christoph Hellwig
2025-07-22 10:55 ` Jens Axboe
  -- strict thread matches above, loose matches on Subject: below --
2025-07-31 14:08 Christoph Hellwig
2025-07-31 16:55 ` 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).