You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

123456789101112131415161718192021
  1. #ifndef _USR_FCMGMT_H
  2. #define _USR_FCMGMT_H
  3. /** @file
  4. *
  5. * Fibre Channel management
  6. *
  7. */
  8. FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
  9. struct fc_port;
  10. struct fc_peer;
  11. struct fc_els_handler;
  12. extern void fcportstat ( struct fc_port *port );
  13. extern void fcpeerstat ( struct fc_peer *peer );
  14. extern int fcels ( struct fc_port *port, struct fc_port_id *peer_port_id,
  15. struct fc_els_handler *handler );
  16. #endif /* _USR_FCMGMT_H */