Lines Matching defs:finalize
1044 * @finalize: driver callback to finalize sending XDP Tx frames on the queue
1047 * the bulk to the XDPSQ. If requested by the stack, finalize the queue.
1056 void (*finalize)(void *xdpsq, bool sent, bool flush))
1083 finalize(bq->xdpsq, nxmit, flags & XDP_XMIT_FLUSH);
1097 * @fin: driver cabback to finalize the queue
1538 * libeth_xdp_finalize_rx - finalize XDPSQ after a NAPI polling loop (non-XSk)
1541 * @finalize: driver callback to start sending the frames and run the timer
1546 #define libeth_xdp_finalize_rx(bq, flush, finalize) \
1547 __libeth_xdp_finalize_rx(bq, 0, flush, finalize)
1553 void (*finalize)(void *xdpsq, bool sent, bool flush))
1558 finalize(bq->xdpsq, true, true);
1681 * LIBETH_XDP_DEFINE_FINALIZE - define a driver Rx NAPI poll finalize function
1684 * @finalize: driver callback to finalize an XDPSQ and run the timer
1686 #define LIBETH_XDP_DEFINE_FINALIZE(name, flush, finalize) \
1687 __LIBETH_XDP_DEFINE_FINALIZE(name, flush, finalize, xdp)
1689 #define __LIBETH_XDP_DEFINE_FINALIZE(name, flush, finalize, pfx) \
1692 libeth_##pfx##_finalize_rx(bq, flush, finalize); \