We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 50fe1a3 commit 02e2d8fCopy full SHA for 02e2d8f
drivers/scsi/ibmvscsi/ibmvfc.h
@@ -716,9 +716,15 @@ enum ibmvfc_target_action {
716
IBMVFC_TGT_ACTION_LOGOUT_DELETED_RPORT,
717
};
718
719
+enum ibmvfc_protocol {
720
+ IBMVFC_PROTO_SCSI = 0,
721
+ IBMVFC_PROTO_NVME = 1,
722
+};
723
+
724
struct ibmvfc_target {
725
struct list_head queue;
726
struct ibmvfc_host *vhost;
727
+ enum ibmvfc_protocol protocol;
728
u64 scsi_id;
729
u64 wwpn;
730
u64 new_scsi_id;
@@ -816,11 +822,6 @@ struct ibmvfc_queue {
816
822
irq_handler_t handler;
817
823
818
824
819
-enum ibmvfc_protocol {
820
- IBMVFC_PROTO_SCSI = 0,
821
- IBMVFC_PROTO_NVME = 1,
-};
-
825
struct ibmvfc_channels {
826
struct ibmvfc_queue *scrqs;
827
enum ibmvfc_protocol protocol;
0 commit comments