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

The following changes since commit a731763fc479a9c64456e0643d0ccf64203100c9:

  blk-cgroup: prevent rcu_sched detected stalls warnings while iterating blkgs (2021-07-07 09:36:36 -0600)

are available in the Git repository at:

  git://git.infradead.org/nvme.git tags/nvme-5.14-2021-07-15

for you to fetch changes up to 251ef6f71be2adfd09546a26643426fe62585173:

  nvme-pci: do not call nvme_dev_remove_admin from nvme_remove (2021-07-13 12:03:20 +0200)

----------------------------------------------------------------
nvme fixes for Linux 5.14

 - fix various races in nvme-pci when shutting down just after probing
   (Casey Chen)
 - fix a net_device leak in nvme-tcp (Prabhakar Kushwaha)

----------------------------------------------------------------
Casey Chen (2):
      nvme-pci: fix multiple races in nvme_setup_io_queues
      nvme-pci: do not call nvme_dev_remove_admin from nvme_remove

Prabhakar Kushwaha (1):
      nvme-tcp: use __dev_get_by_name instead dev_get_by_name for OPT_HOST_IFACE

 drivers/nvme/host/pci.c | 67 ++++++++++++++++++++++++++++++++++++++++++-------
 drivers/nvme/host/tcp.c |  4 +--
 2 files changed, 59 insertions(+), 12 deletions(-)

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

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

On 7/15/21 8:12 AM, Christoph Hellwig wrote:
> The following changes since commit a731763fc479a9c64456e0643d0ccf64203100c9:
> 
>   blk-cgroup: prevent rcu_sched detected stalls warnings while iterating blkgs (2021-07-07 09:36:36 -0600)
> 
> are available in the Git repository at:
> 
>   git://git.infradead.org/nvme.git tags/nvme-5.14-2021-07-15

Pulled, thanks.

-- 
Jens Axboe


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

* Re: [GIT PULL] nvme fixes for Linux 5.14
  2021-07-22 18:56 Christoph Hellwig
@ 2021-07-22 20:25 ` Jens Axboe
  0 siblings, 0 replies; 4+ messages in thread
From: Jens Axboe @ 2021-07-22 20:25 UTC (permalink / raw)
  To: Christoph Hellwig; +Cc: Keith Busch, linux-block, Sagi Grimberg, linux-nvme

On 7/22/21 12:56 PM, Christoph Hellwig wrote:
> The following changes since commit ec645dc96699ea6c37b6de86c84d7288ea9a4ddf:
> 
>   block: increase BLKCG_MAX_POLS (2021-07-17 13:07:24 -0600)
> 
> are available in the Git repository at:
> 
>   git://git.infradead.org/nvme.git tags/nvme-5.14-2021-07-22

Pulled, thanks.

-- 
Jens Axboe


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

* [GIT PULL] nvme fixes for Linux 5.14
@ 2021-07-22 18:56 Christoph Hellwig
  2021-07-22 20:25 ` Jens Axboe
  0 siblings, 1 reply; 4+ messages in thread
From: Christoph Hellwig @ 2021-07-22 18:56 UTC (permalink / raw)
  To: Jens Axboe; +Cc: Keith Busch, linux-block, Sagi Grimberg, linux-nvme

The following changes since commit ec645dc96699ea6c37b6de86c84d7288ea9a4ddf:

  block: increase BLKCG_MAX_POLS (2021-07-17 13:07:24 -0600)

are available in the Git repository at:

  git://git.infradead.org/nvme.git tags/nvme-5.14-2021-07-22

for you to fetch changes up to aaeb7bb061be545251606f4d9c82d710ca2a7c8e:

  nvme: set the PRACT bit when using Write Zeroes with T10 PI (2021-07-21 17:24:10 +0200)

----------------------------------------------------------------
nvme fixes for Linux 5.14:

 - tracing fix (Keith Busch)
 - fix multipath head refcounting (Hannes Reinecke)
 - Write Zeroes vs PI fix (me)
 - drop a bogus WARN_ON (Zhihao Cheng)

----------------------------------------------------------------
Christoph Hellwig (1):
      nvme: set the PRACT bit when using Write Zeroes with T10 PI

Hannes Reinecke (1):
      nvme: fix refcounting imbalance when all paths are down

Keith Busch (1):
      nvme: fix nvme_setup_command metadata trace event

Zhihao Cheng (1):
      nvme-pci: don't WARN_ON in nvme_reset_work if ctrl.state is not RESETTING

 drivers/nvme/host/core.c      | 19 +++++++++++++++----
 drivers/nvme/host/multipath.c |  9 ++++++++-
 drivers/nvme/host/nvme.h      | 11 ++---------
 drivers/nvme/host/pci.c       |  4 +++-
 drivers/nvme/host/trace.h     |  6 +++---
 5 files changed, 31 insertions(+), 18 deletions(-)

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

end of thread, other threads:[~2021-07-22 20:25 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-07-15 14:12 [GIT PULL] nvme fixes for Linux 5.14 Christoph Hellwig
2021-07-15 15:32 ` Jens Axboe
2021-07-22 18:56 Christoph Hellwig
2021-07-22 20:25 ` 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).