Linux Kernel  3.7.1
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
scsi_transport_srp.h
Go to the documentation of this file.
1 #ifndef SCSI_TRANSPORT_SRP_H
2 #define SCSI_TRANSPORT_SRP_H
3 
5 #include <linux/types.h>
6 #include <linux/mutex.h>
7 
8 #define SRP_RPORT_ROLE_INITIATOR 0
9 #define SRP_RPORT_ROLE_TARGET 1
10 
12  u8 port_id[16];
14 };
15 
16 struct srp_rport {
17  struct device dev;
18 
19  u8 port_id[16];
21 };
22 
24  /* for target drivers */
27 };
28 
29 extern struct scsi_transport_template *
32 
33 extern struct srp_rport *srp_rport_add(struct Scsi_Host *,
34  struct srp_rport_identifiers *);
35 extern void srp_rport_del(struct srp_rport *);
36 
37 extern void srp_remove_host(struct Scsi_Host *);
38 
39 #endif