public inbox for linux-nvme@lists.infradead.org
 help / color / mirror / Atom feed
* [GIT PULL] nvme fix for Linux 6.3
@ 2023-03-01 13:48 Christoph Hellwig
  2023-03-01 14:50 ` Jens Axboe
  0 siblings, 1 reply; 6+ messages in thread
From: Christoph Hellwig @ 2023-03-01 13:48 UTC (permalink / raw)
  To: Jens Axboe
  Cc: Keith Busch, Sagi Grimberg, Chaitanya Kulkarni, linux-block,
	linux-nvme

The following changes since commit 310726c33ad76cebdee312dbfafc12c1b44bf977:

  block: be a bit more careful in checking for NULL bdev while polling (2023-02-24 13:19:59 -0700)

are available in the Git repository at:

  git://git.infradead.org/nvme.git tags/nvme-6.3-2022-03-01

for you to fetch changes up to 26a57cb35548ae67c14871cccbf50da3edb01ea4:

  nvme-fabrics: show well known discovery name (2023-02-28 06:14:44 -0700)

----------------------------------------------------------------
nvme fixes for Linux 6.3

 - don't access released socket during error recovery (Akinobu Mita)
 - bring back auto-removal of deleted namespaces during sequential scan
   (Christoph Hellwig)
 - fix an error code in nvme_auth_process_dhchap_challenge
   (Dan Carpenter)
 - show well known discovery name (Daniel Wagner)
 - add a missing endianess conversion in effects masking (Keith Busch)

----------------------------------------------------------------
Akinobu Mita (1):
      nvme-tcp: don't access released socket during error recovery

Christoph Hellwig (1):
      nvme: bring back auto-removal of deleted namespaces during sequential scan

Dan Carpenter (1):
      nvme-auth: fix an error code in nvme_auth_process_dhchap_challenge()

Daniel Wagner (1):
      nvme-fabrics: show well known discovery name

Keith Busch (1):
      nvme: fix sparse warning on effects masking

 drivers/nvme/host/auth.c    |  2 +-
 drivers/nvme/host/core.c    | 37 +++++++++++++++++++------------------
 drivers/nvme/host/fabrics.h |  3 ++-
 drivers/nvme/host/tcp.c     |  6 ++++++
 4 files changed, 28 insertions(+), 20 deletions(-)


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

* Re: [GIT PULL] nvme fix for Linux 6.3
  2023-03-01 13:48 [GIT PULL] nvme fix for Linux 6.3 Christoph Hellwig
@ 2023-03-01 14:50 ` Jens Axboe
  0 siblings, 0 replies; 6+ messages in thread
From: Jens Axboe @ 2023-03-01 14:50 UTC (permalink / raw)
  To: Christoph Hellwig
  Cc: Keith Busch, Sagi Grimberg, Chaitanya Kulkarni, linux-block,
	linux-nvme

On 3/1/23 6:48 AM, Christoph Hellwig wrote:
> The following changes since commit 310726c33ad76cebdee312dbfafc12c1b44bf977:
> 
>   block: be a bit more careful in checking for NULL bdev while polling (2023-02-24 13:19:59 -0700)
> 
> are available in the Git repository at:
> 
>   git://git.infradead.org/nvme.git tags/nvme-6.3-2022-03-01
> 
> for you to fetch changes up to 26a57cb35548ae67c14871cccbf50da3edb01ea4:
> 
>   nvme-fabrics: show well known discovery name (2023-02-28 06:14:44 -0700)
> 
> ----------------------------------------------------------------
> nvme fixes for Linux 6.3
> 
>  - don't access released socket during error recovery (Akinobu Mita)
>  - bring back auto-removal of deleted namespaces during sequential scan
>    (Christoph Hellwig)
>  - fix an error code in nvme_auth_process_dhchap_challenge
>    (Dan Carpenter)
>  - show well known discovery name (Daniel Wagner)
>  - add a missing endianess conversion in effects masking (Keith Busch)

Pulled, thanks.

-- 
Jens Axboe




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

* [GIT PULL] nvme fix for Linux 6.3
@ 2023-04-06 13:56 Christoph Hellwig
  2023-04-06 14:12 ` Jens Axboe
  0 siblings, 1 reply; 6+ messages in thread
From: Christoph Hellwig @ 2023-04-06 13:56 UTC (permalink / raw)
  To: Jens Axboe
  Cc: Keith Busch, Sagi Grimberg, Chaitanya Kulkarni, linux-block,
	linux-nvme

The following changes since commit 38a8c4d1d45006841f0643f4cb29b5e50758837c:

  blk-mq: directly poll requests (2023-04-04 16:11:47 -0600)

are available in the Git repository at:

  git://git.infradead.org/nvme.git tags/nvme-6.3-2023-04-06

for you to fetch changes up to d3205ab75e99a47539ec91ef85ba488f4ddfeaa9:

  nvme: fix discard support without oncs (2023-04-05 17:13:17 +0200)

----------------------------------------------------------------
nvme fixes for Linux 6.3

 - fix discard support without oncs (Keith Busch)

----------------------------------------------------------------
Keith Busch (1):
      nvme: fix discard support without oncs

 drivers/nvme/host/core.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)


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

* Re: [GIT PULL] nvme fix for Linux 6.3
  2023-04-06 13:56 Christoph Hellwig
@ 2023-04-06 14:12 ` Jens Axboe
  0 siblings, 0 replies; 6+ messages in thread
From: Jens Axboe @ 2023-04-06 14:12 UTC (permalink / raw)
  To: Christoph Hellwig
  Cc: Keith Busch, Sagi Grimberg, Chaitanya Kulkarni, linux-block,
	linux-nvme

On 4/6/23 7:56 AM, Christoph Hellwig wrote:
> The following changes since commit 38a8c4d1d45006841f0643f4cb29b5e50758837c:
> 
>   blk-mq: directly poll requests (2023-04-04 16:11:47 -0600)
> 
> are available in the Git repository at:
> 
>   git://git.infradead.org/nvme.git tags/nvme-6.3-2023-04-06
> 
> for you to fetch changes up to d3205ab75e99a47539ec91ef85ba488f4ddfeaa9:
> 
>   nvme: fix discard support without oncs (2023-04-05 17:13:17 +0200)
> 
> ----------------------------------------------------------------
> nvme fixes for Linux 6.3
> 
>  - fix discard support without oncs (Keith Busch)

Pulled, thanks.

-- 
Jens Axboe




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

* [GIT PULL] nvme fix for Linux 6.3
@ 2023-04-14  5:16 Christoph Hellwig
  2023-04-14 12:29 ` Jens Axboe
  0 siblings, 1 reply; 6+ messages in thread
From: Christoph Hellwig @ 2023-04-14  5:16 UTC (permalink / raw)
  To: Jens Axboe
  Cc: ith Busch, Sagi Grimberg, Chaitanya Kulkarni, linux-block,
	linux-nvme

The following changes since commit 3723091ea1884d599cc8b8bf719d6f42e8d4d8b1:

  block: don't set GD_NEED_PART_SCAN if scan partition failed (2023-04-06 20:41:53 -0600)

are available in the Git repository at:

  git://git.infradead.org/nvme.git nvme-6.3

for you to fetch changes up to 74391b3e69855e7dd65a9cef36baf5fc1345affd:

  nvme-pci: add NVME_QUIRK_BOGUS_NID for T-FORCE Z330 SSD (2023-04-14 07:13:48 +0200)

----------------------------------------------------------------
Duy Truong (1):
      nvme-pci: add NVME_QUIRK_BOGUS_NID for T-FORCE Z330 SSD

 drivers/nvme/host/pci.c | 2 ++
 1 file changed, 2 insertions(+)


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

* Re: [GIT PULL] nvme fix for Linux 6.3
  2023-04-14  5:16 Christoph Hellwig
@ 2023-04-14 12:29 ` Jens Axboe
  0 siblings, 0 replies; 6+ messages in thread
From: Jens Axboe @ 2023-04-14 12:29 UTC (permalink / raw)
  To: Christoph Hellwig
  Cc: ith Busch, Sagi Grimberg, Chaitanya Kulkarni, linux-block,
	linux-nvme

On 4/13/23 11:16 PM, Christoph Hellwig wrote:
> The following changes since commit 3723091ea1884d599cc8b8bf719d6f42e8d4d8b1:
> 
>   block: don't set GD_NEED_PART_SCAN if scan partition failed (2023-04-06 20:41:53 -0600)
> 
> are available in the Git repository at:
> 
>   git://git.infradead.org/nvme.git nvme-6.3

You forgot to create a signed tag. It's trivial enough so I'll just pull
it, just a heads up.

-- 
Jens Axboe




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

end of thread, other threads:[~2023-04-14 12:30 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-03-01 13:48 [GIT PULL] nvme fix for Linux 6.3 Christoph Hellwig
2023-03-01 14:50 ` Jens Axboe
  -- strict thread matches above, loose matches on Subject: below --
2023-04-06 13:56 Christoph Hellwig
2023-04-06 14:12 ` Jens Axboe
2023-04-14  5:16 Christoph Hellwig
2023-04-14 12:29 ` Jens Axboe

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox