diff options
author | Jens Axboe <axboe@kernel.dk> | 2019-12-06 17:27:56 -0700 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2019-12-06 17:27:56 -0700 |
commit | dc3ecfc9819a96b2a6700b01443347b01e07a13b (patch) | |
tree | 4ecc369d0114698ef84af1dc459f1fa33df55a07 /include | |
parent | 8539429917c48c994d2e2cafa02ab06587b3b42c (diff) | |
parent | 7e4c6b9a5d22485acf009b3c3510a370f096dd54 (diff) | |
download | linux-dc3ecfc9819a96b2a6700b01443347b01e07a13b.tar.bz2 |
Merge branch 'nvme/for-5.5' of git://git.infradead.org/nvme into for-linus
Pull NVMe fixes from Keith
* 'nvme/for-5.5' of git://git.infradead.org/nvme:
nvme/pci: Fix read queue count
nvme/pci Limit write queue sizes to possible cpus
nvme/pci: Fix write and poll queue types
nvme/pci: Remove last_cq_head
nvme: Namepace identification descriptor list is optional
nvme-fc: fix double-free scenarios on hw queues
nvme: else following return is not needed
nvme: add error message on mismatching controller ids
nvme_fc: add module to ops template to allow module references
nvmet-loop: Avoid preallocating big SGL for data
nvme-fc: Avoid preallocating big SGL for data
nvme-rdma: Avoid preallocating big SGL for data
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/nvme-fc-driver.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/linux/nvme-fc-driver.h b/include/linux/nvme-fc-driver.h index 10f81629b9ce..6d0d70f3219c 100644 --- a/include/linux/nvme-fc-driver.h +++ b/include/linux/nvme-fc-driver.h @@ -270,6 +270,8 @@ struct nvme_fc_remote_port { * * Host/Initiator Transport Entrypoints/Parameters: * + * @module: The LLDD module using the interface + * * @localport_delete: The LLDD initiates deletion of a localport via * nvme_fc_deregister_localport(). However, the teardown is * asynchronous. This routine is called upon the completion of the @@ -383,6 +385,8 @@ struct nvme_fc_remote_port { * Value is Mandatory. Allowed to be zero. */ struct nvme_fc_port_template { + struct module *module; + /* initiator-based functions */ void (*localport_delete)(struct nvme_fc_local_port *); void (*remoteport_delete)(struct nvme_fc_remote_port *); |