target_core_fabric_lib.h 1.4 KB

1234567891011121314151617181920212223242526272829
  1. #ifndef TARGET_CORE_FABRIC_LIB_H
  2. #define TARGET_CORE_FABRIC_LIB_H
  3. extern u8 sas_get_fabric_proto_ident(struct se_portal_group *);
  4. extern u32 sas_get_pr_transport_id(struct se_portal_group *, struct se_node_acl *,
  5. struct t10_pr_registration *, int *, unsigned char *);
  6. extern u32 sas_get_pr_transport_id_len(struct se_portal_group *, struct se_node_acl *,
  7. struct t10_pr_registration *, int *);
  8. extern char *sas_parse_pr_out_transport_id(struct se_portal_group *,
  9. const char *, u32 *, char **);
  10. extern u8 fc_get_fabric_proto_ident(struct se_portal_group *);
  11. extern u32 fc_get_pr_transport_id(struct se_portal_group *, struct se_node_acl *,
  12. struct t10_pr_registration *, int *, unsigned char *);
  13. extern u32 fc_get_pr_transport_id_len(struct se_portal_group *, struct se_node_acl *,
  14. struct t10_pr_registration *, int *);
  15. extern char *fc_parse_pr_out_transport_id(struct se_portal_group *,
  16. const char *, u32 *, char **);
  17. extern u8 iscsi_get_fabric_proto_ident(struct se_portal_group *);
  18. extern u32 iscsi_get_pr_transport_id(struct se_portal_group *, struct se_node_acl *,
  19. struct t10_pr_registration *, int *, unsigned char *);
  20. extern u32 iscsi_get_pr_transport_id_len(struct se_portal_group *, struct se_node_acl *,
  21. struct t10_pr_registration *, int *);
  22. extern char *iscsi_parse_pr_out_transport_id(struct se_portal_group *,
  23. const char *, u32 *, char **);
  24. #endif /* TARGET_CORE_FABRIC_LIB_H */