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.

ib_sma.h 402B

1234567891011121314151617181920
  1. #ifndef _IPXE_IB_SMA_H
  2. #define _IPXE_IB_SMA_H
  3. /** @file
  4. *
  5. * Infiniband subnet management agent
  6. *
  7. */
  8. FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
  9. struct ib_device;
  10. struct ib_mad_interface;
  11. extern int ib_create_sma ( struct ib_device *ibdev,
  12. struct ib_mad_interface *mi );
  13. extern void ib_destroy_sma ( struct ib_device *ibdev,
  14. struct ib_mad_interface *mi );
  15. #endif /* _IPXE_IB_SMA_H */