From: Keith Busch <kbusch@kernel.org>
To: axboe@kernel.dk
Cc: linux-nvme@lists.infradead.org, hch@lst.de, sagi@grimberg.me
Subject: Re: [GIT PULL] nvme updates for Linux 6.15
Date: Thu, 20 Mar 2025 18:04:46 -0600 [thread overview]
Message-ID: <Z9ytHt3tpEMsTcbN@kbusch-mbp> (raw)
In-Reply-To: <Z9x9U4DQA_a2erBK@kbusch-mbp.dhcp.thefacebook.com>
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
next prev parent reply other threads:[~2025-03-21 0:04 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-03-20 20:40 [GIT PULL] nvme updates for Linux 6.15 Keith Busch
2025-03-21 0:04 ` Keith Busch [this message]
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
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=Z9ytHt3tpEMsTcbN@kbusch-mbp \
--to=kbusch@kernel.org \
--cc=axboe@kernel.dk \
--cc=hch@lst.de \
--cc=linux-nvme@lists.infradead.org \
--cc=sagi@grimberg.me \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox