1 #ifndef _GPXE_IB_SMA_H 2 #define _GPXE_IB_SMA_H 3 4 /** @file 5 * 6 * Infiniband subnet management agent 7 * 8 */ 9 10 FILE_LICENCE ( GPL2_OR_LATER ); 11 12 struct ib_device; 13 struct ib_mad_interface; 14 15 extern int ib_create_sma ( struct ib_device *ibdev, 16 struct ib_mad_interface *mi ); 17 extern void ib_destroy_sma ( struct ib_device *ibdev, 18 struct ib_mad_interface *mi ); 19 20 #endif /* _GPXE_IB_SMA_H */ 21