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_mcast.h 413B

12345678910111213141516171819
  1. #ifndef _GPXE_IB_MCAST_H
  2. #define _GPXE_IB_MCAST_H
  3. /** @file
  4. *
  5. * Infiniband multicast groups
  6. *
  7. */
  8. FILE_LICENCE ( GPL2_OR_LATER );
  9. #include <gpxe/infiniband.h>
  10. extern int ib_mcast_join ( struct ib_device *ibdev, struct ib_queue_pair *qp,
  11. struct ib_gid *gid );
  12. extern void ib_mcast_leave ( struct ib_device *ibdev, struct ib_queue_pair *qp,
  13. struct ib_gid *gid );
  14. #endif /* _GPXE_IB_MCAST_H */