All of lore.kernel.org
 help / color / mirror / Atom feed
* [GIT PULL] nvme fixes for Linux 5.18
@ 2022-04-15  5:01 Christoph Hellwig
  2022-04-15 12:34 ` Jens Axboe
  0 siblings, 1 reply; 4+ messages in thread
From: Christoph Hellwig @ 2022-04-15  5:01 UTC (permalink / raw)
  To: Jens Axboe; +Cc: Keith Busch, linux-block, Sagi Grimberg, linux-nvme

The following changes since commit 3e3876d322aef82416ecc496a4d4a587e0fdf7a3:

  block: null_blk: end timed out poll request (2022-04-14 10:16:33 -0600)

are available in the Git repository at:

  git://git.infradead.org/nvme.git tags/nvme-5.18-2022-04-15

for you to fetch changes up to 66dd346b84d79fde20832ed691a54f4881eac20d:

  nvme-pci: disable namespace identifiers for Qemu controllers (2022-04-15 06:56:17 +0200)

----------------------------------------------------------------
nvme fixes for Linux 5.18

 - tone down the error logging added this merge window a bit
   (Chaitanya Kulkarni)
 - quirk devices with non-unique unique identifiers (me)

----------------------------------------------------------------
Chaitanya Kulkarni (1):
      nvme: don't print verbose errors for internal passthrough requests

Christoph Hellwig (3):
      nvme: add a quirk to disable namespace identifiers
      nvme-pci: disable namespace identifiers for the MAXIO MAP1002/1202
      nvme-pci: disable namespace identifiers for Qemu controllers

 drivers/nvme/host/core.c | 27 ++++++++++++++++++++-------
 drivers/nvme/host/nvme.h |  5 +++++
 drivers/nvme/host/pci.c  |  9 ++++++++-
 3 files changed, 33 insertions(+), 8 deletions(-)

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

* Re: [GIT PULL] nvme fixes for Linux 5.18
  2022-04-15  5:01 [GIT PULL] nvme fixes for Linux 5.18 Christoph Hellwig
@ 2022-04-15 12:34 ` Jens Axboe
  0 siblings, 0 replies; 4+ messages in thread
From: Jens Axboe @ 2022-04-15 12:34 UTC (permalink / raw)
  To: Christoph Hellwig; +Cc: Keith Busch, linux-block, Sagi Grimberg, linux-nvme

On 4/14/22 11:01 PM, Christoph Hellwig wrote:
> The following changes since commit 3e3876d322aef82416ecc496a4d4a587e0fdf7a3:
> 
>   block: null_blk: end timed out poll request (2022-04-14 10:16:33 -0600)
> 
> are available in the Git repository at:
> 
>   git://git.infradead.org/nvme.git tags/nvme-5.18-2022-04-15

Pulled, thanks.

-- 
Jens Axboe


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

* Re: [GIT PULL] nvme fixes for Linux 5.18
  2022-03-29  7:31 Christoph Hellwig
@ 2022-03-29 12:24 ` Jens Axboe
  0 siblings, 0 replies; 4+ messages in thread
From: Jens Axboe @ 2022-03-29 12:24 UTC (permalink / raw)
  To: Christoph Hellwig; +Cc: Keith Busch, linux-block, Sagi Grimberg, linux-nvme

On 3/29/22 1:31 AM, Christoph Hellwig wrote:
> git://git.infradead.org/nvme.git tags/nvme-5.18-2022-03-29

Pulled, thanks.

-- 
Jens Axboe


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

* [GIT PULL] nvme fixes for Linux 5.18
@ 2022-03-29  7:31 Christoph Hellwig
  2022-03-29 12:24 ` Jens Axboe
  0 siblings, 1 reply; 4+ messages in thread
From: Christoph Hellwig @ 2022-03-29  7:31 UTC (permalink / raw)
  To: Jens Axboe; +Cc: Keith Busch, linux-block, Sagi Grimberg, linux-nvme

The following changes since commit b2479de38d8fc7ef13d5c78ff5ded6e5a1a4eac0:

  n64cart: convert bi_disk to bi_bdev->bd_disk fix build (2022-03-21 06:34:45 -0600)

are available in the Git repository at:

  git://git.infradead.org/nvme.git tags/nvme-5.18-2022-03-29

for you to fetch changes up to a4a6f3c8f61c3cfbda4998ad94596059ad7e4332:

  nvme-multipath: fix hang when disk goes live over reconnect (2022-03-29 09:29:06 +0200)

----------------------------------------------------------------
 for Linux 5.18

  - fix multipath hang when disk goes live over reconnect (Anton Eidelman)
  - fix RCU hole that allowed for endless looping in multipath round robin
    (Chris Leech)
  - remove redundant assignment after left shift (Colin Ian King)
  - add quirks for Samsung X5 SSDs (Monish Kumar R)
  - fix the read-only state for zoned namespaces with unsupposed features
    (Pankaj Raghav)
  - use a private workqueue instead of the system workqueue in nvmet
    (Sagi Grimberg)
  - allow duplicate NSIDs for private namespaces (Sungup Moon)
  - expose use_threaded_interrupts read-only in sysfs (Xin Hao)

----------------------------------------------------------------
Anton Eidelman (1):
      nvme-multipath: fix hang when disk goes live over reconnect

Chris Leech (1):
      nvme: fix RCU hole that allowed for endless looping in multipath round robin

Colin Ian King (1):
      nvmet: remove redundant assignment after left shift

Monish Kumar R (1):
      nvme-pci: add quirks for Samsung X5 SSDs

Pankaj Raghav (1):
      nvme: fix the read-only state for zoned namespaces with unsupposed features

Sagi Grimberg (1):
      nvmet: use a private workqueue instead of the system workqueue

Sungup Moon (1):
      nvme: allow duplicate NSIDs for private namespaces

Xin Hao (1):
      nvme-pci: expose use_threaded_interrupts read-only in sysfs

 drivers/nvme/host/core.c          | 38 ++++++++++++++++++++++++++------------
 drivers/nvme/host/multipath.c     | 32 +++++++++++++++++++++++++++-----
 drivers/nvme/host/nvme.h          | 23 +++++++++++++++++++++++
 drivers/nvme/host/pci.c           |  7 +++++--
 drivers/nvme/target/admin-cmd.c   |  2 +-
 drivers/nvme/target/configfs.c    |  2 +-
 drivers/nvme/target/core.c        | 26 +++++++++++++++++++-------
 drivers/nvme/target/fc.c          |  8 ++++----
 drivers/nvme/target/fcloop.c      | 16 ++++++++--------
 drivers/nvme/target/io-cmd-file.c |  6 +++---
 drivers/nvme/target/loop.c        |  4 ++--
 drivers/nvme/target/nvmet.h       |  1 +
 drivers/nvme/target/passthru.c    |  2 +-
 drivers/nvme/target/rdma.c        | 12 ++++++------
 drivers/nvme/target/tcp.c         | 10 +++++-----
 include/linux/nvme.h              |  1 +
 16 files changed, 133 insertions(+), 57 deletions(-)

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

end of thread, other threads:[~2022-04-15 12:35 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-04-15  5:01 [GIT PULL] nvme fixes for Linux 5.18 Christoph Hellwig
2022-04-15 12:34 ` Jens Axboe
  -- strict thread matches above, loose matches on Subject: below --
2022-03-29  7:31 Christoph Hellwig
2022-03-29 12:24 ` 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.