fc_libfc.h 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. /*
  2. * Copyright(c) 2009 Intel Corporation. All rights reserved.
  3. *
  4. * This program is free software; you can redistribute it and/or modify it
  5. * under the terms and conditions of the GNU General Public License,
  6. * version 2, as published by the Free Software Foundation.
  7. *
  8. * This program is distributed in the hope it will be useful, but WITHOUT
  9. * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  10. * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
  11. * more details.
  12. *
  13. * You should have received a copy of the GNU General Public License along with
  14. * this program; if not, write to the Free Software Foundation, Inc.,
  15. * 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
  16. *
  17. * Maintained at www.Open-FCoE.org
  18. */
  19. #ifndef _FC_LIBFC_H_
  20. #define _FC_LIBFC_H_
  21. #define FC_LIBFC_LOGGING 0x01 /* General logging, not categorized */
  22. #define FC_LPORT_LOGGING 0x02 /* lport layer logging */
  23. #define FC_DISC_LOGGING 0x04 /* discovery layer logging */
  24. #define FC_RPORT_LOGGING 0x08 /* rport layer logging */
  25. #define FC_FCP_LOGGING 0x10 /* I/O path logging */
  26. #define FC_EM_LOGGING 0x20 /* Exchange Manager logging */
  27. #define FC_EXCH_LOGGING 0x40 /* Exchange/Sequence logging */
  28. #define FC_SCSI_LOGGING 0x80 /* SCSI logging (mostly error handling) */
  29. extern unsigned int fc_debug_logging;
  30. #define FC_CHECK_LOGGING(LEVEL, CMD) \
  31. do { \
  32. if (unlikely(fc_debug_logging & LEVEL)) \
  33. do { \
  34. CMD; \
  35. } while (0); \
  36. } while (0)
  37. #define FC_LIBFC_DBG(fmt, args...) \
  38. FC_CHECK_LOGGING(FC_LIBFC_LOGGING, \
  39. printk(KERN_INFO "libfc: " fmt, ##args))
  40. #define FC_LPORT_DBG(lport, fmt, args...) \
  41. FC_CHECK_LOGGING(FC_LPORT_LOGGING, \
  42. printk(KERN_INFO "host%u: lport %6x: " fmt, \
  43. (lport)->host->host_no, \
  44. fc_host_port_id((lport)->host), ##args))
  45. #define FC_DISC_DBG(disc, fmt, args...) \
  46. FC_CHECK_LOGGING(FC_DISC_LOGGING, \
  47. printk(KERN_INFO "host%u: disc: " fmt, \
  48. (disc)->lport->host->host_no, \
  49. ##args))
  50. #define FC_RPORT_ID_DBG(lport, port_id, fmt, args...) \
  51. FC_CHECK_LOGGING(FC_RPORT_LOGGING, \
  52. printk(KERN_INFO "host%u: rport %6x: " fmt, \
  53. (lport)->host->host_no, \
  54. (port_id), ##args))
  55. #define FC_RPORT_DBG(rdata, fmt, args...) \
  56. FC_RPORT_ID_DBG((rdata)->local_port, (rdata)->ids.port_id, fmt, ##args)
  57. #define FC_FCP_DBG(pkt, fmt, args...) \
  58. FC_CHECK_LOGGING(FC_FCP_LOGGING, \
  59. printk(KERN_INFO "host%u: fcp: %6x: " fmt, \
  60. (pkt)->lp->host->host_no, \
  61. pkt->rport->port_id, ##args))
  62. #define FC_EXCH_DBG(exch, fmt, args...) \
  63. FC_CHECK_LOGGING(FC_EXCH_LOGGING, \
  64. printk(KERN_INFO "host%u: xid %4x: " fmt, \
  65. (exch)->lp->host->host_no, \
  66. exch->xid, ##args))
  67. #define FC_SCSI_DBG(lport, fmt, args...) \
  68. FC_CHECK_LOGGING(FC_SCSI_LOGGING, \
  69. printk(KERN_INFO "host%u: scsi: " fmt, \
  70. (lport)->host->host_no, ##args))
  71. /*
  72. * Set up direct-data placement for this I/O request
  73. */
  74. void fc_fcp_ddp_setup(struct fc_fcp_pkt *fsp, u16 xid);
  75. /*
  76. * Module setup functions
  77. */
  78. int fc_setup_exch_mgr(void);
  79. void fc_destroy_exch_mgr(void);
  80. int fc_setup_rport(void);
  81. void fc_destroy_rport(void);
  82. int fc_setup_fcp(void);
  83. void fc_destroy_fcp(void);
  84. /*
  85. * Internal libfc functions
  86. */
  87. const char *fc_els_resp_type(struct fc_frame *);
  88. /*
  89. * Copies a buffer into an sg list
  90. */
  91. u32 fc_copy_buffer_to_sglist(void *buf, size_t len,
  92. struct scatterlist *sg,
  93. u32 *nents, size_t *offset,
  94. enum km_type km_type, u32 *crc);
  95. #endif /* _FC_LIBFC_H_ */