scsi_transport_srp.h 902 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. #ifndef SCSI_TRANSPORT_SRP_H
  2. #define SCSI_TRANSPORT_SRP_H
  3. #include <linux/transport_class.h>
  4. #include <linux/types.h>
  5. #include <linux/mutex.h>
  6. #define SRP_RPORT_ROLE_INITIATOR 0
  7. #define SRP_RPORT_ROLE_TARGET 1
  8. struct srp_rport_identifiers {
  9. u8 port_id[16];
  10. u8 roles;
  11. };
  12. struct srp_rport {
  13. struct device dev;
  14. u8 port_id[16];
  15. u8 roles;
  16. };
  17. struct srp_function_template {
  18. /* for target drivers */
  19. int (* tsk_mgmt_response)(struct Scsi_Host *, u64, u64, int);
  20. int (* it_nexus_response)(struct Scsi_Host *, u64, int);
  21. };
  22. extern struct scsi_transport_template *
  23. srp_attach_transport(struct srp_function_template *);
  24. extern void srp_release_transport(struct scsi_transport_template *);
  25. extern struct srp_rport *srp_rport_add(struct Scsi_Host *,
  26. struct srp_rport_identifiers *);
  27. extern void srp_rport_del(struct srp_rport *);
  28. extern void srp_remove_host(struct Scsi_Host *);
  29. #endif