public inbox for linux-nvme@lists.infradead.org
 help / color / mirror / Atom feed
* [GIT PULL] nvme updates for Linux 6.15
@ 2025-03-20 20:40 Keith Busch
  2025-03-21  0:04 ` Keith Busch
  0 siblings, 1 reply; 8+ messages in thread
From: Keith Busch @ 2025-03-20 20:40 UTC (permalink / raw)
  To: axboe; +Cc: linux-nvme, hch, sagi

The following changes since commit 9fcc4add3c0d6e43788d55bf7a957c1d4de8584a:

  ublk: add DMA alignment limit (2025-02-27 07:58:13 -0700)

are available in the Git repository at:

  git://git.infradead.org/nvme.git tags/nvme-6.15-2025-03-20

for you to fetch changes up to 8c38a7ac3ef5b09d438479f018280e65c4d52d09:

  nvmet: replace max(a, min(b, c)) by clamp(val, lo, hi) (2025-03-20 13:10:56 -0700)

----------------------------------------------------------------
nvme updates for Linux 6.15

 - Secure concatenation for TCP transport (Hannes)
 - Multipath sysfs visibility (Nilay)
 - Various cleanups (Qasim, Baruch, Wang, Chen, Mike, Damien, Li)
 - Correct use of 64-bit BARs for pci-epf (Niklas)
 - Socket fix for selinux when used in containers (Peijie)

----------------------------------------------------------------
Baruch Siach (1):
      nvme-pci: remove stale comment

Chen Ni (1):
      nvmet: pci-epf: Remove redundant 'flush_workqueue()' calls

Damien Le Moal (1):
      nvme: zns: Simplify nvme_zone_parse_entry()

Hannes Reinecke (10):
      crypto,fs: Separate out hkdf_extract() and hkdf_expand()
      nvme: add nvme_auth_generate_psk()
      nvme: add nvme_auth_generate_digest()
      nvme: add nvme_auth_derive_tls_psk()
      nvme-keyring: add nvme_tls_psk_refresh()
      nvme-tcp: request secure channel concatenation
      nvme-fabrics: reset admin connection for secure concatenation
      nvmet: Add 'sq' argument to alloc_ctrl_args
      nvmet-tcp: support secure channel concatenation
      nvmet: add tls_concat and tls_key debugfs entries

Li Haoran (1):
      nvmet: replace max(a, min(b, c)) by clamp(val, lo, hi)

Mike Christie (1):
      nvmet: Remove duplicate uuid_copy

Niklas Cassel (1):
      nvmet: pci-epf: Always configure BAR0 as 64-bit

Nilay Shroff (3):
      nvme-multipath: Add visibility for round-robin io-policy
      nvme-multipath: Add visibility for numa io-policy
      nvme-multipath: Add visibility for queue-depth io-policy

Peijie Shao (1):
      nvme-tcp: fix selinux denied when calling sock_sendmsg

Qasim Ijaz (1):
      nvme-fc: Utilise min3() to simplify queue count calculation

WangYuli (1):
      nvmet-fc: Remove unused functions

 crypto/Kconfig                         |   6 +
 crypto/Makefile                        |   1 +
 crypto/hkdf.c                          | 573 +++++++++++++++++++++++++++++++++
 drivers/nvme/common/Kconfig            |   1 +
 drivers/nvme/common/auth.c             | 337 +++++++++++++++++++
 drivers/nvme/common/keyring.c          |  65 +++-
 drivers/nvme/host/Kconfig              |   2 +-
 drivers/nvme/host/auth.c               | 115 ++++++-
 drivers/nvme/host/core.c               |   3 +
 drivers/nvme/host/fabrics.c            |  34 +-
 drivers/nvme/host/fabrics.h            |   3 +
 drivers/nvme/host/fc.c                 |   4 +-
 drivers/nvme/host/multipath.c          | 138 ++++++++
 drivers/nvme/host/nvme.h               |  22 +-
 drivers/nvme/host/pci.c                |   3 -
 drivers/nvme/host/sysfs.c              |  24 +-
 drivers/nvme/host/tcp.c                |  67 +++-
 drivers/nvme/host/zns.c                |  10 +-
 drivers/nvme/target/auth.c             |  72 ++++-
 drivers/nvme/target/core.c             |   9 +-
 drivers/nvme/target/debugfs.c          |  27 ++
 drivers/nvme/target/fabrics-cmd-auth.c |  60 +++-
 drivers/nvme/target/fabrics-cmd.c      |  25 +-
 drivers/nvme/target/fc.c               |  14 -
 drivers/nvme/target/nvmet.h            |  40 ++-
 drivers/nvme/target/pci-epf.c          |  12 +-
 drivers/nvme/target/tcp.c              |  32 +-
 fs/crypto/Kconfig                      |   1 +
 fs/crypto/hkdf.c                       |  85 +----
 include/crypto/hkdf.h                  |  20 ++
 include/linux/nvme-auth.h              |   7 +
 include/linux/nvme-keyring.h           |  12 +-
 include/linux/nvme.h                   |   7 +
 33 files changed, 1685 insertions(+), 146 deletions(-)
 create mode 100644 crypto/hkdf.c
 create mode 100644 include/crypto/hkdf.h



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

* Re: [GIT PULL] nvme updates for Linux 6.15
  2025-03-20 20:40 [GIT PULL] nvme updates for Linux 6.15 Keith Busch
@ 2025-03-21  0:04 ` Keith Busch
  2025-03-21  0:40   ` Jens Axboe
  0 siblings, 1 reply; 8+ messages in thread
From: Keith Busch @ 2025-03-21  0:04 UTC (permalink / raw)
  To: axboe; +Cc: linux-nvme, hch, sagi

Sending a rebased pull: our trees were out of sync in the previous pull
request.

The following changes since commit fc22b34e95ce0a294c797c397a9db671e6ff4448:

  docs: sysfs-block: Clarify integrity sysfs attributes (2025-03-20 05:44:09 -0600)

are available in the Git repository at:

  git://git.infradead.org/nvme.git tags/nvme-6.15-2025-03-20

for you to fetch changes up to 64ea88e3afa8c5b6c3f9c477da304b7a56149612:

  nvmet: replace max(a, min(b, c)) by clamp(val, lo, hi) (2025-03-20 16:53:56 -0700)

----------------------------------------------------------------
nvme updates for Linux 6.15

 - Secure concatenation for TCP transport (Hannes)
 - Multipath sysfs visibility (Nilay)
 - Various cleanups (Qasim, Baruch, Wang, Chen, Mike, Damien, Li)
 - Correct use of 64-bit BARs for pci-epf target (Niklas)
 - Socket fix for selinux when used in containers (Peijie)

----------------------------------------------------------------
Baruch Siach (1):
      nvme-pci: remove stale comment

Chen Ni (1):
      nvmet: pci-epf: Remove redundant 'flush_workqueue()' calls

Damien Le Moal (1):
      nvme: zns: Simplify nvme_zone_parse_entry()

Hannes Reinecke (10):
      crypto,fs: Separate out hkdf_extract() and hkdf_expand()
      nvme: add nvme_auth_generate_psk()
      nvme: add nvme_auth_generate_digest()
      nvme: add nvme_auth_derive_tls_psk()
      nvme-keyring: add nvme_tls_psk_refresh()
      nvme-tcp: request secure channel concatenation
      nvme-fabrics: reset admin connection for secure concatenation
      nvmet: Add 'sq' argument to alloc_ctrl_args
      nvmet-tcp: support secure channel concatenation
      nvmet: add tls_concat and tls_key debugfs entries

Li Haoran (1):
      nvmet: replace max(a, min(b, c)) by clamp(val, lo, hi)

Mike Christie (1):
      nvmet: Remove duplicate uuid_copy

Niklas Cassel (1):
      nvmet: pci-epf: Always configure BAR0 as 64-bit

Nilay Shroff (3):
      nvme-multipath: Add visibility for round-robin io-policy
      nvme-multipath: Add visibility for numa io-policy
      nvme-multipath: Add visibility for queue-depth io-policy

Peijie Shao (1):
      nvme-tcp: fix selinux denied when calling sock_sendmsg

Qasim Ijaz (1):
      nvme-fc: Utilise min3() to simplify queue count calculation

WangYuli (1):
      nvmet-fc: Remove unused functions

 crypto/Kconfig                         |   6 +
 crypto/Makefile                        |   1 +
 crypto/hkdf.c                          | 573 +++++++++++++++++++++++++++++++++
 drivers/nvme/common/Kconfig            |   1 +
 drivers/nvme/common/auth.c             | 337 +++++++++++++++++++
 drivers/nvme/common/keyring.c          |  65 +++-
 drivers/nvme/host/Kconfig              |   2 +-
 drivers/nvme/host/auth.c               | 115 ++++++-
 drivers/nvme/host/core.c               |   3 +
 drivers/nvme/host/fabrics.c            |  34 +-
 drivers/nvme/host/fabrics.h            |   3 +
 drivers/nvme/host/fc.c                 |   4 +-
 drivers/nvme/host/multipath.c          | 138 ++++++++
 drivers/nvme/host/nvme.h               |  22 +-
 drivers/nvme/host/pci.c                |   3 -
 drivers/nvme/host/sysfs.c              |  24 +-
 drivers/nvme/host/tcp.c                |  67 +++-
 drivers/nvme/host/zns.c                |  10 +-
 drivers/nvme/target/auth.c             |  72 ++++-
 drivers/nvme/target/core.c             |   9 +-
 drivers/nvme/target/debugfs.c          |  27 ++
 drivers/nvme/target/fabrics-cmd-auth.c |  60 +++-
 drivers/nvme/target/fabrics-cmd.c      |  25 +-
 drivers/nvme/target/fc.c               |  14 -
 drivers/nvme/target/nvmet.h            |  40 ++-
 drivers/nvme/target/pci-epf.c          |  12 +-
 drivers/nvme/target/tcp.c              |  32 +-
 fs/crypto/Kconfig                      |   1 +
 fs/crypto/hkdf.c                       |  85 +----
 include/crypto/hkdf.h                  |  20 ++
 include/linux/nvme-auth.h              |   7 +
 include/linux/nvme-keyring.h           |  12 +-
 include/linux/nvme.h                   |   7 +
 33 files changed, 1685 insertions(+), 146 deletions(-)
 create mode 100644 crypto/hkdf.c
 create mode 100644 include/crypto/hkdf.h



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

* Re: [GIT PULL] nvme updates for Linux 6.15
  2025-03-21  0:04 ` Keith Busch
@ 2025-03-21  0:40   ` Jens Axboe
  0 siblings, 0 replies; 8+ messages in thread
From: Jens Axboe @ 2025-03-21  0:40 UTC (permalink / raw)
  To: Keith Busch; +Cc: linux-nvme, hch, sagi

On 3/20/25 6:04 PM, Keith Busch wrote:
> Sending a rebased pull: our trees were out of sync in the previous pull
> request.
> 
> The following changes since commit fc22b34e95ce0a294c797c397a9db671e6ff4448:
> 
>   docs: sysfs-block: Clarify integrity sysfs attributes (2025-03-20 05:44:09 -0600)
> 
> are available in the Git repository at:
> 
>   git://git.infradead.org/nvme.git tags/nvme-6.15-2025-03-20
> 
> for you to fetch changes up to 64ea88e3afa8c5b6c3f9c477da304b7a56149612:
> 
>   nvmet: replace max(a, min(b, c)) by clamp(val, lo, hi) (2025-03-20 16:53:56 -0700)
> 
> ----------------------------------------------------------------
> nvme updates for Linux 6.15
> 
>  - Secure concatenation for TCP transport (Hannes)
>  - Multipath sysfs visibility (Nilay)
>  - Various cleanups (Qasim, Baruch, Wang, Chen, Mike, Damien, Li)
>  - Correct use of 64-bit BARs for pci-epf target (Niklas)
>  - Socket fix for selinux when used in containers (Peijie)

Thanks Keith, pulled.

-- 
Jens Axboe



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

* [GIT PULL] nvme updates for Linux 6.15
@ 2025-04-02 18:01 Keith Busch
  2025-04-02 18:11 ` Jens Axboe
  0 siblings, 1 reply; 8+ messages in thread
From: Keith Busch @ 2025-04-02 18:01 UTC (permalink / raw)
  To: axboe; +Cc: hch, sagi, linux-nvme

The following changes since commit e3e68311ead15d8be61e8e1a8d2f0d1773a7ba9c:

  block: remove unused nseg parameter (2025-04-01 07:21:35 -0600)

are available in the Git repository at:

  git://git.infradead.org/nvme.git tags/nvme-6.15-2025-04-02

for you to fetch changes up to 288ff0d10beb069355036355d5f7612579dc869c:

  nvme-pci: skip nvme_write_sq_db on empty rqlist (2025-04-01 09:01:06 -0700)

----------------------------------------------------------------
nvme updates for Linux 6.15

 - PCI endpoint target cleanup (Damien)
 - Early import for uring_cmd fixed buffer (Caleb)
 - Multipath documentation and notification improvements (John)
 - Invalid pci sq doorbell write fix (Maurizio)

----------------------------------------------------------------
Caleb Sander Mateos (3):
      nvme/ioctl: don't warn on vectorized uring_cmd with fixed buffer
      nvme/ioctl: move blk_mq_free_request() out of nvme_map_user_request()
      nvme/ioctl: move fixed buffer lookup to nvme_uring_cmd_io()

Damien Le Moal (1):
      nvmet: pci-epf: Keep completion queues mapped

John Meneghini (2):
      nvme: update the multipath warning in nvme_init_ns_head
      nvme-multipath: change the NVME_MULTIPATH config option

Maurizio Lombardi (1):
      nvme-pci: skip nvme_write_sq_db on empty rqlist

 drivers/nvme/host/Kconfig     | 13 +++++++++----
 drivers/nvme/host/core.c      |  2 +-
 drivers/nvme/host/ioctl.c     | 68 +++++++++++++++++++++++++++++++++++++-------------------------------
 drivers/nvme/host/pci.c       |  3 +++
 drivers/nvme/target/pci-epf.c | 63 +++++++++++++++++++++++++--------------------------------------
 5 files changed, 75 insertions(+), 74 deletions(-)


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

* Re: [GIT PULL] nvme updates for Linux 6.15
  2025-04-02 18:01 Keith Busch
@ 2025-04-02 18:11 ` Jens Axboe
  0 siblings, 0 replies; 8+ messages in thread
From: Jens Axboe @ 2025-04-02 18:11 UTC (permalink / raw)
  To: Keith Busch; +Cc: hch, sagi, linux-nvme

On 4/2/25 12:01 PM, Keith Busch wrote:
> The following changes since commit e3e68311ead15d8be61e8e1a8d2f0d1773a7ba9c:
> 
>   block: remove unused nseg parameter (2025-04-01 07:21:35 -0600)
> 
> are available in the Git repository at:
> 
>   git://git.infradead.org/nvme.git tags/nvme-6.15-2025-04-02
> 
> for you to fetch changes up to 288ff0d10beb069355036355d5f7612579dc869c:
> 
>   nvme-pci: skip nvme_write_sq_db on empty rqlist (2025-04-01 09:01:06 -0700)
> 
> ----------------------------------------------------------------
> nvme updates for Linux 6.15
> 
>  - PCI endpoint target cleanup (Damien)
>  - Early import for uring_cmd fixed buffer (Caleb)
>  - Multipath documentation and notification improvements (John)
>  - Invalid pci sq doorbell write fix (Maurizio)

Pulled, thanks.

-- 
Jens Axboe


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

* [GIT PULL] nvme updates for Linux 6.15
@ 2025-04-10 15:01 Christoph Hellwig
  2025-04-10 15:29 ` Jens Axboe
  0 siblings, 1 reply; 8+ messages in thread
From: Christoph Hellwig @ 2025-04-10 15:01 UTC (permalink / raw)
  To: Jens Axboe
  Cc: linux-block, Keith Busch, Jens Axboe, Sagi Grimberg,
	Chaitanya Kulkarni, linux-nvme

The following changes since commit 72070e57b0a518ec8e562a2b68fdfc796ef5c040:

  selftests: ublk: fix test_stripe_04 (2025-04-03 20:13:38 -0600)

are available in the Git repository at:

  git://git.infradead.org/nvme.git tags/nvme-6.15-2025-04-10

for you to fetch changes up to 70289ae5cac4d3a39575405aaf63330486cea030:

  nvmet-fc: put ref when assoc->del_work is already scheduled (2025-04-09 13:03:56 +0200)

----------------------------------------------------------------
nvme updates for Linux 6.15

 - nvmet fc/fcloop refcounting fixes (Daniel Wagner)
 - fix missed namespace/ANA scans (Hannes Reinecke)
 - fix a use after free in the new TCP netns support (Kuniyuki Iwashima)
 - fix a NULL instead of false review in multipath (Uday Shankar)

----------------------------------------------------------------
Daniel Wagner (8):
      nvmet-fcloop: swap list_add_tail arguments
      nvmet-fcloop: replace kref with refcount
      nvmet-fcloop: add ref counting to lport
      nvmet-fc: inline nvmet_fc_delete_assoc
      nvmet-fc: inline nvmet_fc_free_hostport
      nvmet-fc: update tgtport ref per assoc
      nvmet-fc: take tgtport reference only once
      nvmet-fc: put ref when assoc->del_work is already scheduled

Hannes Reinecke (2):
      nvme: requeue namespace scan on missed AENs
      nvme: re-read ANA log page after ns scan completes

Kuniyuki Iwashima (1):
      nvme-tcp: fix use-after-free of netns by kernel TCP socket.

Uday Shankar (1):
      nvme: multipath: fix return value of nvme_available_path

 drivers/nvme/host/core.c      |  9 ++++++
 drivers/nvme/host/multipath.c |  2 +-
 drivers/nvme/host/tcp.c       |  2 ++
 drivers/nvme/target/fc.c      | 60 ++++++++++++-----------------------
 drivers/nvme/target/fcloop.c  | 74 +++++++++++++++++++++++--------------------
 5 files changed, 72 insertions(+), 75 deletions(-)


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

* Re: [GIT PULL] nvme updates for Linux 6.15
  2025-04-10 15:01 Christoph Hellwig
@ 2025-04-10 15:29 ` Jens Axboe
  2025-04-10 15:40   ` Jens Axboe
  0 siblings, 1 reply; 8+ messages in thread
From: Jens Axboe @ 2025-04-10 15:29 UTC (permalink / raw)
  To: Christoph Hellwig
  Cc: linux-block, Keith Busch, Jens Axboe, Sagi Grimberg,
	Chaitanya Kulkarni, linux-nvme

On 4/10/25 9:01 AM, Christoph Hellwig wrote:
> The following changes since commit 72070e57b0a518ec8e562a2b68fdfc796ef5c040:
> 
>   selftests: ublk: fix test_stripe_04 (2025-04-03 20:13:38 -0600)
> 
> are available in the Git repository at:
> 
>   git://git.infradead.org/nvme.git tags/nvme-6.15-2025-04-10
> 
> for you to fetch changes up to 70289ae5cac4d3a39575405aaf63330486cea030:
> 
>   nvmet-fc: put ref when assoc->del_work is already scheduled (2025-04-09 13:03:56 +0200)
> 
> ----------------------------------------------------------------
> nvme updates for Linux 6.15
> 
>  - nvmet fc/fcloop refcounting fixes (Daniel Wagner)
>  - fix missed namespace/ANA scans (Hannes Reinecke)
>  - fix a use after free in the new TCP netns support (Kuniyuki Iwashima)
>  - fix a NULL instead of false review in multipath (Uday Shankar)

Pulled, thanks - since this is late, it'll make the pull next week for
-rc3.

-- 
Jens Axboe



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

* Re: [GIT PULL] nvme updates for Linux 6.15
  2025-04-10 15:29 ` Jens Axboe
@ 2025-04-10 15:40   ` Jens Axboe
  0 siblings, 0 replies; 8+ messages in thread
From: Jens Axboe @ 2025-04-10 15:40 UTC (permalink / raw)
  To: Christoph Hellwig
  Cc: linux-block, Keith Busch, Jens Axboe, Sagi Grimberg,
	Chaitanya Kulkarni, linux-nvme

On 4/10/25 9:29 AM, Jens Axboe wrote:
> On 4/10/25 9:01 AM, Christoph Hellwig wrote:
>> The following changes since commit 72070e57b0a518ec8e562a2b68fdfc796ef5c040:
>>
>>   selftests: ublk: fix test_stripe_04 (2025-04-03 20:13:38 -0600)
>>
>> are available in the Git repository at:
>>
>>   git://git.infradead.org/nvme.git tags/nvme-6.15-2025-04-10
>>
>> for you to fetch changes up to 70289ae5cac4d3a39575405aaf63330486cea030:
>>
>>   nvmet-fc: put ref when assoc->del_work is already scheduled (2025-04-09 13:03:56 +0200)
>>
>> ----------------------------------------------------------------
>> nvme updates for Linux 6.15
>>
>>  - nvmet fc/fcloop refcounting fixes (Daniel Wagner)
>>  - fix missed namespace/ANA scans (Hannes Reinecke)
>>  - fix a use after free in the new TCP netns support (Kuniyuki Iwashima)
>>  - fix a NULL instead of false review in multipath (Uday Shankar)
> 
> Pulled, thanks - since this is late, it'll make the pull next week for
> -rc3.

As it turns out, it's only Thursday today, for some reason I was
thinking it was Friday - which is also why I sent out the pulls this
morning. Wishful thinking...

Anyway, I'll shove this one off tomorrow as well as per the regular
schedule.

-- 
Jens Axboe


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

end of thread, other threads:[~2025-04-10 16:58 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-03-20 20:40 [GIT PULL] nvme updates for Linux 6.15 Keith Busch
2025-03-21  0:04 ` Keith Busch
2025-03-21  0:40   ` Jens Axboe
  -- strict thread matches above, loose matches on Subject: below --
2025-04-02 18:01 Keith Busch
2025-04-02 18:11 ` Jens Axboe
2025-04-10 15:01 Christoph Hellwig
2025-04-10 15:29 ` Jens Axboe
2025-04-10 15:40   ` Jens Axboe

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