ibv_ack_async_event (3) Linux Manual Page
NAME
ibv_get_async_event, ibv_ack_async_event – get or acknowledge asynchronous events
SYNOPSIS
#include <infiniband/verbs.h>
int ibv_get_async_event(struct ibv_context *context,
struct ibv_async_event *event);
void ibv_ack_async_event(struct ibv_async_event *event);
DESCRIPTION
ibv_get_async_event() waits for the next async event of the RDMA device context context and returns it through the pointer event, which is an ibv_async_event struct, as defined in <infiniband/verbs.h>.
struct ibv_async_event {
union {
struct ibv_cq *cq; /* CQ that got the event */
struct ibv_qp *qp; /* QP that got the event */
struct ibv_srq *srq; /* SRQ that got the event */
int port_num; /* port number that got the event */
} element;
enum ibv_event_type event_type; /* type of the event */
};
One member of the element union will be valid, depending on the event_type member of the structure. event_type will be one of the following events:
QP events:
IBV_EVENT_QP_FATALError occurred on a QP and it transitioned to error stateIBV_EVENT_QP_REQ_ERRInvalid Request Local Work Queue ErrorIBV_EVENT_QP_ACCESS_ERRLocal access violation errorIBV_EVENT_COMM_ESTCommunication was established on a QPIBV_EVENT_SQ_DRAINEDSend Queue was drained of outstanding messages in progressIBV_EVENT_PATH_MIGA connection has migrated to the alternate pathIBV_EVENT_PATH_MIG_ERRA connection failed to migrate to the alternate pathIBV_EVENT_QP_LAST_WQE_REACHEDLast WQE Reached on a QP associated with an SRQ
CQ events:
IBV_EVENT_CQ_ERRCQ is in error (CQ overrun)
SRQ events:
IBV_EVENT_SRQ_ERRError occurred on an SRQIBV_EVENT_SRQ_LIMIT_REACHEDSRQ limit was reached
Port events:
IBV_EVENT_PORT_ACTIVELink became active on a portIBV_EVENT_PORT_ERRLink became unavailable on a portIBV_EVENT_LID_CHANGELID was changed on a portIBV_EVENT_PKEY_CHANGEP_Key table was changed on a portIBV_EVENT_SM_CHANGESM was changed on a portIBV_EVENT_CLIENT_REREGISTERSM sent a CLIENT_REREGISTER request to a portIBV_EVENT_GID_CHANGEGID table was changed on a port
CA events:
IBV_EVENT_DEVICE_FATALCA is in FATAL state
ibv_ack_async_event() acknowledge the async event event.
RETURN VALUE
ibv_get_async_event() returns 0 on success, and -1 on error.
ibv_ack_async_event() returns no value.
NOTES
All async events that ibv_get_async_event() returns must be acknowledged using ibv_ack_async_event(). To avoid races, destroying an object (CQ, SRQ or QP) will wait for all affiliated events for the object to be acknowledged; this avoids an application retrieving an affiliated event after the corresponding object has already been destroyed.
ibv_get_async_event() is a blocking function. If multiple threads call this function simultaneously, then when an async event occurs, only one thread will receive it, and it is not possible to predict which thread will receive it.
EXAMPLES
The following code example demonstrates one possible way to work with async events in non-blocking mode. It performs the following steps:
1. Set the async events queue work mode to be non-blocked
2. Poll the queue until it has an async event
3. Get the async event and ack it
/* change the blocking mode of the async event queue */
flags = fcntl(ctx->async_fd, F_GETFL);
rc = fcntl(ctx->async_fd, F_SETFL, flags | O_NONBLOCK);
if (rc < 0) {
fprintf(stderr, "Failed to change file descriptor of async event queue
");
return 1;
}
/*
* poll the queue until it has an event and sleep ms_timeout
* milliseconds between any iteration
*/
my_pollfd.fd = ctx->async_fd;
my_pollfd.events = POLLIN;
my_pollfd.revents = 0;
do {
rc = poll(&my_pollfd, 1, ms_timeout);
} while (rc == 0);
if (rc < 0) {
fprintf(stderr, "poll failed
");
return 1;
}
/* Get the async event */
if (ibv_get_async_event(ctx, &async_event)) {
fprintf(stderr, "Failed to get async_event
");
return 1;
}
/* Ack the event */
ibv_ack_async_event(&async_event);
SEE ALSO
AUTHORS
- Dotan Barak <dotanba [at] gmail.com>
