#include <infiniband/verbs.h> const char *ibv_event_type_str(enum ibv_event_type event_type); const char *ibv_node_type_str(enum ibv_node_type node_type); const char *ibv_port_state_str(enum ibv_port_state port_state);
ibv_node_type_str() returns a string describing the node type enum value node_type.
ibv_port_state_str() returns a string describing the port state enum value port_state.
ibv_event_type_str() returns a string describing the event type enum value event_type.
These functions return a constant string that describes the enum value passed as their argument.
Roland Dreier