sysfs-bus-fcoe 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. What: /sys/bus/fcoe/ctlr_X
  2. Date: March 2012
  3. KernelVersion: TBD
  4. Contact: Robert Love <robert.w.love@intel.com>, devel@open-fcoe.org
  5. Description: 'FCoE Controller' instances on the fcoe bus
  6. Attributes:
  7. fcf_dev_loss_tmo: Device loss timeout peroid (see below). Changing
  8. this value will change the dev_loss_tmo for all
  9. FCFs discovered by this controller.
  10. lesb_link_fail: Link Error Status Block (LESB) link failure count.
  11. lesb_vlink_fail: Link Error Status Block (LESB) virtual link
  12. failure count.
  13. lesb_miss_fka: Link Error Status Block (LESB) missed FCoE
  14. Initialization Protocol (FIP) Keep-Alives (FKA).
  15. lesb_symb_err: Link Error Status Block (LESB) symbolic error count.
  16. lesb_err_block: Link Error Status Block (LESB) block error count.
  17. lesb_fcs_error: Link Error Status Block (LESB) Fibre Channel
  18. Serivces error count.
  19. Notes: ctlr_X (global increment starting at 0)
  20. What: /sys/bus/fcoe/fcf_X
  21. Date: March 2012
  22. KernelVersion: TBD
  23. Contact: Robert Love <robert.w.love@intel.com>, devel@open-fcoe.org
  24. Description: 'FCoE FCF' instances on the fcoe bus. A FCF is a Fibre Channel
  25. Forwarder, which is a FCoE switch that can accept FCoE
  26. (Ethernet) packets, unpack them, and forward the embedded
  27. Fibre Channel frames into a FC fabric. It can also take
  28. outbound FC frames and pack them in Ethernet packets to
  29. be sent to their destination on the Ethernet segment.
  30. Attributes:
  31. fabric_name: Identifies the fabric that the FCF services.
  32. switch_name: Identifies the FCF.
  33. priority: The switch's priority amongst other FCFs on the same
  34. fabric.
  35. selected: 1 indicates that the switch has been selected for use;
  36. 0 indicates that the swich will not be used.
  37. fc_map: The Fibre Channel MAP
  38. vfid: The Virtual Fabric ID
  39. mac: The FCF's MAC address
  40. fka_peroid: The FIP Keep-Alive peroid
  41. fabric_state: The internal kernel state
  42. "Unknown" - Initialization value
  43. "Disconnected" - No link to the FCF/fabric
  44. "Connected" - Host is connected to the FCF
  45. "Deleted" - FCF is being removed from the system
  46. dev_loss_tmo: The device loss timeout peroid for this FCF.
  47. Notes: A device loss infrastructre similar to the FC Transport's
  48. is present in fcoe_sysfs. It is nice to have so that a
  49. link flapping adapter doesn't continually advance the count
  50. used to identify the discovered FCF. FCFs will exist in a
  51. "Disconnected" state until either the timer expires and the
  52. FCF becomes "Deleted" or the FCF is rediscovered and becomes
  53. "Connected."
  54. Users: The first user of this interface will be the fcoeadm application,
  55. which is commonly packaged in the fcoe-utils package.