linux-nvme.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [GIT PULL] nvme fixes for 5.4
@ 2019-10-18 14:37 Keith Busch
  2019-10-18 14:50 ` Jens Axboe
  0 siblings, 1 reply; 4+ messages in thread
From: Keith Busch @ 2019-10-18 14:37 UTC (permalink / raw)
  To: Jens Axboe; +Cc: sagi, linux-nvme, hch

Hi Jens,

This is a collection of bug fixes committed since the previous pull
request that address deadlocks, double resets, memory leaks, and other
regression.

The following changes since commit a9eb49c964884654dd6394cb6abe7ceb021c9c96:

  block: sed-opal: fix sparse warning: convert __be64 data (2019-10-03 14:21:32 -0600)

are available in the Git repository at:

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

for you to fetch changes up to a4f40484e7f1dff56bb9f286cc59ffa36e0259eb:

  nvme-pci: Set the prp2 correctly when using more than 4k page (2019-10-18 23:09:41 +0900)

----------------------------------------------------------------
Ard Biesheuvel (1):
      nvme: retain split access workaround for capability reads

Keith Busch (5):
      nvme-pci: Free tagset if no IO queues
      nvme: Remove ADMIN_ONLY state
      nvme: Restart request timers in resetting state
      nvme: Prevent resets during paused controller state
      nvme: Wait for reset state when required

Kevin Hao (1):
      nvme-pci: Set the prp2 correctly when using more than 4k page

Max Gurtovoy (2):
      nvmet-loop: fix possible leakage during error flow
      nvme-tcp: fix possible leakage during error flow

Sagi Grimberg (1):
      nvme: fix possible deadlock when nvme_update_formats fails

Sebastian Andrzej Siewior (1):
      nvme-tcp: Initialize sk->sk_ll_usec only with NET_RX_BUSY_POLL

 drivers/nvme/host/core.c    | 94 ++++++++++++++++++++++++++++++++-------------
 drivers/nvme/host/fabrics.h |  3 +-
 drivers/nvme/host/nvme.h    |  5 ++-
 drivers/nvme/host/pci.c     | 83 +++++++++++++++++++++++----------------
 drivers/nvme/host/rdma.c    |  8 ++++
 drivers/nvme/host/tcp.c     | 11 ++++++
 drivers/nvme/target/loop.c  |  4 +-
 7 files changed, 144 insertions(+), 64 deletions(-)

_______________________________________________
Linux-nvme mailing list
Linux-nvme@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-nvme

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

* Re: [GIT PULL] nvme fixes for 5.4
  2019-10-18 14:37 [GIT PULL] nvme fixes for 5.4 Keith Busch
@ 2019-10-18 14:50 ` Jens Axboe
  0 siblings, 0 replies; 4+ messages in thread
From: Jens Axboe @ 2019-10-18 14:50 UTC (permalink / raw)
  To: Keith Busch; +Cc: sagi, linux-nvme, hch

On 10/18/19 8:37 AM, Keith Busch wrote:
> This is a collection of bug fixes committed since the previous pull
> request that address deadlocks, double resets, memory leaks, and other
> regression.

Thanks Keith, pulled.

-- 
Jens Axboe


_______________________________________________
Linux-nvme mailing list
Linux-nvme@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-nvme

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

* Re: [GIT PULL] nvme fixes for 5.4
  2019-10-29 14:35 Keith Busch
@ 2019-10-29 14:55 ` Jens Axboe
  0 siblings, 0 replies; 4+ messages in thread
From: Jens Axboe @ 2019-10-29 14:55 UTC (permalink / raw)
  To: Keith Busch; +Cc: Christoph Hellwig, linux-nvme, Sagi Grimberg

On 10/29/19 8:35 AM, Keith Busch wrote:
> Just one fabrics connection fix, and a cleanup made possible with
> that fix.
> 
> The following changes since commit 88a2d41b5fc35fe330a50267be5499c9ba88644c:
> 
>    io_uring: revert "io_uring: optimize submit_and_wait API" (2019-10-22 13:14:37 -0600)

Thanks Keith - I applied both of these by hand, because the branch it's based
on got tossed. JFYI.

-- 
Jens Axboe


_______________________________________________
Linux-nvme mailing list
Linux-nvme@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-nvme

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

* [GIT PULL] nvme fixes for 5.4
@ 2019-10-29 14:35 Keith Busch
  2019-10-29 14:55 ` Jens Axboe
  0 siblings, 1 reply; 4+ messages in thread
From: Keith Busch @ 2019-10-29 14:35 UTC (permalink / raw)
  To: Jens Axboe; +Cc: Christoph Hellwig, linux-nvme, Sagi Grimberg

Just one fabrics connection fix, and a cleanup made possible with
that fix.

The following changes since commit 88a2d41b5fc35fe330a50267be5499c9ba88644c:

  io_uring: revert "io_uring: optimize submit_and_wait API" (2019-10-22 13:14:37 -0600)

are available in the Git repository at:

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

for you to fetch changes up to be4516014ed8040e2e63484c005ed301607c9aeb:

  nvme-multipath: remove unused groups_only mode in ana log (2019-10-23 09:58:16 +0900)

----------------------------------------------------------------
Anton Eidelman (2):
      nvme-multipath: fix possible io hang after ctrl reconnect
      nvme-multipath: remove unused groups_only mode in ana log

 drivers/nvme/host/multipath.c | 9 ++++-----
 1 file changed, 4 insertions(+), 5 deletions(-)


_______________________________________________
Linux-nvme mailing list
Linux-nvme@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-nvme

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

end of thread, other threads:[~2019-10-29 14:55 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-10-18 14:37 [GIT PULL] nvme fixes for 5.4 Keith Busch
2019-10-18 14:50 ` Jens Axboe
2019-10-29 14:35 Keith Busch
2019-10-29 14: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).