diff options
author | Matthew R. Ochs | 2018-01-03 23:55:26 +0100 |
---|---|---|
committer | Martin K. Petersen | 2018-01-11 05:24:58 +0100 |
commit | 25b8e08e83b5bc58967aae566730548f407c0439 (patch) | |
tree | 68751fd71619262a60e9f0bf9a4c9ce0e7cc8cae /drivers/scsi/cxlflash/common.h | |
parent | scsi: cxlflash: Adapter context init can return error (diff) | |
download | kernel-qcow2-linux-25b8e08e83b5bc58967aae566730548f407c0439.tar.gz kernel-qcow2-linux-25b8e08e83b5bc58967aae566730548f407c0439.tar.xz kernel-qcow2-linux-25b8e08e83b5bc58967aae566730548f407c0439.zip |
scsi: cxlflash: Staging to support future accelerators
As staging to support future accelerator transports, add a shim layer
such that the underlying services the cxlflash driver requires can be
conditional upon the accelerator infrastructure.
Signed-off-by: Matthew R. Ochs <mrochs@linux.vnet.ibm.com>
Signed-off-by: Uma Krishnan <ukrishn@linux.vnet.ibm.com>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
Diffstat (limited to 'drivers/scsi/cxlflash/common.h')
-rw-r--r-- | drivers/scsi/cxlflash/common.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/scsi/cxlflash/common.h b/drivers/scsi/cxlflash/common.h index 48df89f6f0b3..102fd26ca886 100644 --- a/drivers/scsi/cxlflash/common.h +++ b/drivers/scsi/cxlflash/common.h @@ -25,6 +25,8 @@ #include <scsi/scsi_cmnd.h> #include <scsi/scsi_device.h> +#include "backend.h" + extern const struct file_operations cxlflash_cxl_fops; #define MAX_CONTEXT CXLFLASH_MAX_CONTEXT /* num contexts per afu */ @@ -114,6 +116,7 @@ enum cxlflash_hwq_mode { struct cxlflash_cfg { struct afu *afu; + const struct cxlflash_backend_ops *ops; struct pci_dev *dev; struct pci_device_id *dev_id; struct Scsi_Host *host; |