| 528 | } |
| 529 | |
| 530 | static void |
| 531 | event_buffer_init(struct event_buffer *bufp) |
| 532 | { |
| 533 | bufp->head = bufp->tail = 0; |
| 534 | memset(&bufp->events, 0, sizeof(struct rte_event) * EVENT_BUFFER_SZ); |
| 535 | } |
| 536 | |
| 537 | static int |
| 538 | event_buffer_add(struct event_buffer *bufp, struct rte_event *eventp) |