aboutsummaryrefslogtreecommitdiffstats
path: root/include/scsi/scsi_transport_srp.h
diff options
context:
space:
mode:
authorFUJITA Tomonori <tomof@acm.org>2007-07-11 15:08:15 +0900
committerJames Bottomley <jejb@mulgrave.localdomain>2007-10-12 14:37:46 -0400
commitaebd5e476ecc8ceb53577b20f2a352ff4ceffd8d (patch)
tree43103d35db1aa80440515db3fc968b0d96dd1d5e /include/scsi/scsi_transport_srp.h
parent[SCSI] ib_srp: convert to use the srp transport class (diff)
downloadlinux-dev-aebd5e476ecc8ceb53577b20f2a352ff4ceffd8d.tar.xz
linux-dev-aebd5e476ecc8ceb53577b20f2a352ff4ceffd8d.zip
[SCSI] transport_srp: add rport roles attribute
This adds a 'roles' attribute to rport like transport_fc. The role can be initiator or target. That is, the initiator driver creates target remote ports and the target driver creates initiator remote ports. Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> Signed-off-by: Mike Christie <michaelc@cs.wisc.edu> Signed-off-by: James Bottomley <James.Bottomley@SteelEye.com>
Diffstat (limited to 'include/scsi/scsi_transport_srp.h')
-rw-r--r--include/scsi/scsi_transport_srp.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/include/scsi/scsi_transport_srp.h b/include/scsi/scsi_transport_srp.h
index adbfca402a69..08b4a28a77b8 100644
--- a/include/scsi/scsi_transport_srp.h
+++ b/include/scsi/scsi_transport_srp.h
@@ -5,14 +5,19 @@
#include <linux/types.h>
#include <linux/mutex.h>
+#define SRP_RPORT_ROLE_INITIATOR 0
+#define SRP_RPORT_ROLE_TARGET 1
+
struct srp_rport_identifiers {
u8 port_id[16];
+ u8 roles;
};
struct srp_rport {
struct device dev;
u8 port_id[16];
+ u8 roles;
};
struct srp_function_template {