Add additional transport type constants

There are multiple types of NVMe transport and we need to ensure
they are all represented in these constants so that 3rd party
drivers can use the correct transport type.
The current variants are very generic and are there to cover early
implementations of NVMe over limited transport types.

Change-Id: I278dd4a6fcbdc1bc477e998eabe07edf81dabd21
This commit is contained in:
Simon Dodsley 2022-07-13 10:27:36 -04:00
parent 5a765deaa8
commit c54e6b26e1
1 changed files with 3 additions and 0 deletions

View File

@ -46,6 +46,9 @@ NFS_VARIANT = 'nfs'
NVMEOF = 'NVMe-oF'
NVMEOF_VARIANT_1 = 'NVMeOF'
NVMEOF_VARIANT_2 = 'nvmeof'
NVMEOF_ROCE = 'NVMe-RoCE'
NVMEOF_FC = 'NVMe-FC'
NVMEOF_TCP = 'NVMe-TCP'
SCALEIO = 'scaleio'
SCSI = 'SCSI'
STORPOOL = 'storpool'