public inbox for linux-nvme@lists.infradead.org
 help / color / mirror / Atom feed
* [GIT PULL] nvme fixes for Linux 6.7
@ 2023-12-01 16:02 Keith Busch
  2023-12-01 16:09 ` Jens Axboe
  0 siblings, 1 reply; 6+ messages in thread
From: Keith Busch @ 2023-12-01 16:02 UTC (permalink / raw)
  To: axboe; +Cc: linux-nvme, hch, sagi

The following changes since commit bb6cc253861bd5a7cf8439e2118659696df9619f:

  bcache: revert replacing IS_ERR_OR_NULL with IS_ERR (2023-11-24 09:39:03 -0700)

are available in the Git repository at:

  git://git.infradead.org/nvme.git tags/nvme-6.7-2023-12-01

for you to fetch changes up to 74fbc88e161424b3b96a22b23a8e3e1edab9d05c:

  nvme-core: check for too small lba shift (2023-12-01 07:49:50 -0800)

----------------------------------------------------------------
nvme fixes for Linux 6.7

 - Invalid namespace identification error handling (Marizio, Ewan, Keith)
 - Fabrics keep-alive tuning (Mark)

----------------------------------------------------------------
Ewan D. Milne (1):
      nvme: check for valid nvme_identify_ns() before using it

Keith Busch (1):
      nvme-core: check for too small lba shift

Mark O'Donovan (1):
      nvme: fine-tune sending of first keep-alive

Maurizio Lombardi (1):
      nvme-core: fix a memory leak in nvme_ns_info_from_identify()

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


^ permalink raw reply	[flat|nested] 6+ messages in thread
* [GIT PULL] nvme fixes for Linux 6.7
@ 2023-12-07 17:06 Keith Busch
  2023-12-07 17:31 ` Jens Axboe
  0 siblings, 1 reply; 6+ messages in thread
From: Keith Busch @ 2023-12-07 17:06 UTC (permalink / raw)
  To: axboe; +Cc: linux-nvme, hch, sagi

The following changes since commit a134cd8dfb8cdfd8f019a7ec2ad5cb8e855f0245:

  Merge tag 'md-fixes-20231201-1' of https://git.kernel.org/pub/scm/linux/kernel/git/song/md into block-6.7 (2023-12-01 18:37:24 -0700)

are available in the Git repository at:

  git://git.infradead.org/nvme.git tags/nvme-6.7-2023-12-7

for you to fetch changes up to 107b4e063d78c300b21e2d5291b1aa94c514ea5b:

  nvme-pci: Add sleep quirk for Kingston drives (2023-12-07 08:53:20 -0800)

----------------------------------------------------------------
nvme fixes for Linux 6.7

 - Proper nvme ctrl state setting (Keith)
 - Passthrough command optimization (Keith)
 - Spectre fix (Nitesh)
 - Kconfig clarifications (Shin'ichiro)
 - Frozen state deadlock fix (Bitao)
 - Power setting quirk (Georg)

----------------------------------------------------------------
Bitao Hu (1):
      nvme: fix deadlock between reset and scan

Georg Gottleuber (1):
      nvme-pci: Add sleep quirk for Kingston drives

Keith Busch (3):
      nvme: introduce helper function to get ctrl state
      nvme: ensure reset state check ordering
      nvme-ioctl: move capable() admin check to the end

Nitesh Shetty (1):
      nvme: prevent potential spectre v1 gadget

Shin'ichiro Kawasaki (1):
      nvme: improve NVME_HOST_AUTH and NVME_TARGET_AUTH config descriptions

 drivers/nvme/host/Kconfig      |  5 +++--
 drivers/nvme/host/core.c       | 52 ++++++++++++++++++++++++++++++++--------------------
 drivers/nvme/host/fc.c         |  6 +++---
 drivers/nvme/host/ioctl.c      | 21 +++++++++++----------
 drivers/nvme/host/nvme.h       | 11 +++++++++++
 drivers/nvme/host/pci.c        | 30 ++++++++++++++++++++++--------
 drivers/nvme/host/rdma.c       | 23 ++++++++++++++---------
 drivers/nvme/host/tcp.c        | 27 +++++++++++++++++----------
 drivers/nvme/target/Kconfig    |  5 +++--
 drivers/nvme/target/configfs.c |  3 +++
 10 files changed, 119 insertions(+), 64 deletions(-)


^ permalink raw reply	[flat|nested] 6+ messages in thread
* [GIT PULL] nvme fixes for Linux 6.7
@ 2023-12-21 21:30 Keith Busch
  2023-12-21 21:33 ` Jens Axboe
  0 siblings, 1 reply; 6+ messages in thread
From: Keith Busch @ 2023-12-21 21:30 UTC (permalink / raw)
  To: axboe; +Cc: linux-nvme, hch, sagi

This pull request is expected to be our last for Linux 6.7.

The following changes since commit c6d3ab9e76dc01011392cf8309f7e684b94ec464:

  Merge tag 'md-fixes-20231207-1' of https://git.kernel.org/pub/scm/linux/kernel/git/song/md into block-6.7 (2023-12-07 12:15:18 -0700)

are available in the Git repository at:

  git://git.infradead.org/nvme.git tags/nvme-6.7-2023-12-21

for you to fetch changes up to f6fe0b2d35457c10ec37acc209d19726bdc16dbd:

  nvme-pci: fix sleeping function called from interrupt context (2023-12-19 12:41:05 -0800)

----------------------------------------------------------------
nvme fixes for Linux 6.7

 - Revert a commit with improper sleep context (Keith)
 - Fix async event handling sleep context (Maurizio)

----------------------------------------------------------------
Keith Busch (1):
      Revert "nvme-fc: fix race between error recovery and creating association"

Maurizio Lombardi (1):
      nvme-pci: fix sleeping function called from interrupt context

 drivers/nvme/host/core.c |  3 ++-
 drivers/nvme/host/fc.c   | 21 +++++----------------
 2 files changed, 7 insertions(+), 17 deletions(-)



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

end of thread, other threads:[~2023-12-21 21:33 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-12-01 16:02 [GIT PULL] nvme fixes for Linux 6.7 Keith Busch
2023-12-01 16:09 ` Jens Axboe
  -- strict thread matches above, loose matches on Subject: below --
2023-12-07 17:06 Keith Busch
2023-12-07 17:31 ` Jens Axboe
2023-12-21 21:30 Keith Busch
2023-12-21 21:33 ` Jens Axboe

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