The following changes since commit a9a7e30fd918588bc312ba782426e3a1282df359: nvme: don't memset() the normal read/write command (2021-10-19 12:41:09 -0600) are available in the Git repository at: git://git.infradead.org/nvme.git tags/nvme-5.16-2021-10-21 for you to fetch changes up to 117d5b6d00ee02f73d7065fe906e2ef1af74bb68: nvmet: use struct_size over open coded arithmetic (2021-10-20 19:23:30 +0200) ---------------------------------------------------------------- nvme updates for Linux 5.16 - fix a multipath partition scanning deadlock (Hannes Reinecke) - generate uevent once a multipath namespace is operational again (Hannes Reinecke) - support unique discovery controller NQNs (Hannes Reinecke) - fix use-after-free when a port is removed (Israel Rukshin) - clear shadow doorbell memory on resets (Keith Busch) - use struct_size (Len Baker) - add error handling support for add_disk (Luis Chamberlain) - limit the maximal queue size for RDMA controllers (Max Gurtovoy) - use a few more symbolic names (Max Gurtovoy) - fix error code in nvme_rdma_setup_ctrl (Max Gurtovoy) - add support for ->map_queues on FC (Saurav Kashyap) ---------------------------------------------------------------- Hannes Reinecke (9): nvme: generate uevent once a multipath namespace is operational again nvmet: make discovery NQN configurable nvme: add CNTRLTYPE definitions for 'identify controller' nvmet: add nvmet_is_disc_subsys() helper nvmet: set 'CNTRLTYPE' in the identify controller data nvme: expose subsystem type in sysfs attribute 'subsystype' nvme: Add connect option 'discovery' nvme: display correct subsystem NQN nvme: drop scan_lock and always kick requeue list when removing namespaces Israel Rukshin (3): nvmet: fix use-after-free when a port is removed nvmet-rdma: fix use-after-free when a port is removed nvmet-tcp: fix use-after-free when a port is removed Keith Busch (1): nvme-pci: clear shadow doorbell memory on resets Len Baker (1): nvmet: use struct_size over open coded arithmetic Luis Chamberlain (1): nvme-multipath: add error handling support for add_disk() Max Gurtovoy (6): nvme-rdma: limit the maximal queue size for RDMA controllers nvmet: add get_max_queue_size op for controllers nvmet-rdma: implement get_max_queue_size controller op nvmet: use macro definition for setting nmic value nvmet: use macro definitions for setting cmic value nvme-rdma: fix error code in nvme_rdma_setup_ctrl Saurav Kashyap (2): nvme-fc: add support for ->map_queues qla2xxx: add ->map_queues support for nvme drivers/nvme/host/core.c | 36 +++++++++++++++++++++++++++++++++- drivers/nvme/host/fabrics.c | 6 +++++- drivers/nvme/host/fabrics.h | 8 ++++++++ drivers/nvme/host/fc.c | 26 ++++++++++++++++++++++++- drivers/nvme/host/multipath.c | 30 +++++++++++++++++++--------- drivers/nvme/host/nvme.h | 1 + drivers/nvme/host/pci.c | 9 ++++++++- drivers/nvme/host/rdma.c | 11 ++++++++++- drivers/nvme/host/tcp.c | 2 +- drivers/nvme/target/admin-cmd.c | 16 ++++++++++----- drivers/nvme/target/configfs.c | 41 +++++++++++++++++++++++++++++++++++++++ drivers/nvme/target/core.c | 17 +++++++++------- drivers/nvme/target/discovery.c | 2 ++ drivers/nvme/target/fabrics-cmd.c | 3 ++- drivers/nvme/target/nvmet.h | 6 ++++++ drivers/nvme/target/rdma.c | 30 ++++++++++++++++++++++++++++ drivers/nvme/target/tcp.c | 16 +++++++++++++++ drivers/scsi/qla2xxx/qla_nvme.c | 15 ++++++++++++++ include/linux/nvme-fc-driver.h | 7 +++++++ include/linux/nvme-rdma.h | 2 ++ include/linux/nvme.h | 11 ++++++++++- 21 files changed, 266 insertions(+), 29 deletions(-)