From: Christoph Hellwig <hch@infradead.org>
To: Jens Axboe <axboe@kernel.dk>
Cc: Keith Busch <kbusch@kernel.org>,
linux-block@vger.kernel.org, Sagi Grimberg <sagi@grimberg.me>,
linux-nvme@lists.infradead.org
Subject: [GIT PULL] nvme updates for Linux 5.20
Date: Thu, 14 Jul 2022 16:34:07 +0200 [thread overview]
Message-ID: <YtApX8HC+BcN3NvL@infradead.org> (raw)
The following changes since commit 3b56590b1715b998cb5c73a5bd2e9d340ccb42dc:
rnbd-clt: make rnbd_clt_change_capacity return void (2022-07-06 07:38:40 -0600)
are available in the Git repository at:
git://git.infradead.org/nvme.git tags/nvme-5.20-2022-07-14
for you to fetch changes up to 7b20ea4f3911c86bee698f1b23ba7f59ec890ceb:
nvme-multipath: refactor nvme_mpath_add_disk (2022-07-12 17:37:31 +0200)
----------------------------------------------------------------
nvme updates for Linux 5.20
- add support for In-Band authentication (Hannes Reinecke)
- handle the persistent internal error AER (Michael Kelley)
- use in-capsule data for TCP I/O queue connect (Caleb Sander)
- remove timeout for getting RDMA-CM established event (Israel Rukshin)
- misc cleanups (Joel Granados, Sagi Grimberg, Chaitanya Kulkarni,
Guixin Liu, Xiang wangx)
----------------------------------------------------------------
Caleb Sander (1):
nvme-tcp: use in-capsule data for I/O connect
Chaitanya Kulkarni (2):
nvme: remove unused timeout parameter
nvme: fix qid param blk_mq_alloc_request_hctx
Guixin Liu (2):
nvme-pci: use nvme core helper to cancel requests in tagset
nvme-apple: use nvme core helper to cancel requests in tagset
Hannes Reinecke (11):
crypto: add crypto_has_shash()
crypto: add crypto_has_kpp()
lib/base64: RFC4648-compliant base64 encoding
nvme: add definitions for NVMe In-Band authentication
nvme-fabrics: decode 'authentication required' connect error
nvme: implement In-Band authentication
nvme-auth: Diffie-Hellman key exchange support
nvmet: parse fabrics commands on io queues
nvmet: implement basic In-Band Authentication
nvmet-auth: Diffie-Hellman key exchange support
nvmet-auth: expire authentication sessions
Israel Rukshin (1):
nvme-rdma: remove timeout for getting RDMA-CM established event
Joel Granados (1):
nvme-multipath: refactor nvme_mpath_add_disk
Michael Kelley (1):
nvme: handle the persistent internal error AER
Sagi Grimberg (1):
nvme-loop: use nvme core helpers to cancel all requests in a tagset
Xiang wangx (1):
nvme: remove a double word in a comment
crypto/kpp.c | 6 +
crypto/shash.c | 6 +
drivers/nvme/Kconfig | 1 +
drivers/nvme/Makefile | 1 +
drivers/nvme/common/Kconfig | 4 +
drivers/nvme/common/Makefile | 7 +
drivers/nvme/common/auth.c | 482 +++++++++++++++
drivers/nvme/host/Kconfig | 15 +
drivers/nvme/host/Makefile | 1 +
drivers/nvme/host/apple.c | 7 +-
drivers/nvme/host/auth.c | 1017 ++++++++++++++++++++++++++++++++
drivers/nvme/host/core.c | 190 +++++-
drivers/nvme/host/fabrics.c | 94 ++-
drivers/nvme/host/fabrics.h | 7 +
drivers/nvme/host/multipath.c | 6 +-
drivers/nvme/host/nvme.h | 39 +-
drivers/nvme/host/pci.c | 6 +-
drivers/nvme/host/rdma.c | 14 +-
drivers/nvme/host/tcp.c | 13 +-
drivers/nvme/host/trace.c | 32 +
drivers/nvme/target/Kconfig | 15 +
drivers/nvme/target/Makefile | 1 +
drivers/nvme/target/admin-cmd.c | 4 +-
drivers/nvme/target/auth.c | 525 +++++++++++++++++
drivers/nvme/target/configfs.c | 138 ++++-
drivers/nvme/target/core.c | 15 +
drivers/nvme/target/fabrics-cmd-auth.c | 545 +++++++++++++++++
drivers/nvme/target/fabrics-cmd.c | 55 +-
drivers/nvme/target/loop.c | 8 +-
drivers/nvme/target/nvmet.h | 75 ++-
include/crypto/hash.h | 2 +
include/crypto/kpp.h | 2 +
include/linux/base64.h | 16 +
include/linux/nvme-auth.h | 41 ++
include/linux/nvme.h | 213 ++++++-
lib/Makefile | 2 +-
lib/base64.c | 103 ++++
37 files changed, 3640 insertions(+), 68 deletions(-)
create mode 100644 drivers/nvme/common/Kconfig
create mode 100644 drivers/nvme/common/Makefile
create mode 100644 drivers/nvme/common/auth.c
create mode 100644 drivers/nvme/host/auth.c
create mode 100644 drivers/nvme/target/auth.c
create mode 100644 drivers/nvme/target/fabrics-cmd-auth.c
create mode 100644 include/linux/base64.h
create mode 100644 include/linux/nvme-auth.h
create mode 100644 lib/base64.c
next reply other threads:[~2022-07-14 14:34 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-07-14 14:34 Christoph Hellwig [this message]
2022-07-14 16:30 ` [GIT PULL] nvme updates for Linux 5.20 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=YtApX8HC+BcN3NvL@infradead.org \
--to=hch@infradead.org \
--cc=axboe@kernel.dk \
--cc=kbusch@kernel.org \
--cc=linux-block@vger.kernel.org \
--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