| 744 | } |
| 745 | |
| 746 | static int |
| 747 | iflib_num_tx_descs(if_ctx_t ctx) |
| 748 | { |
| 749 | if_softc_ctx_t scctx = &ctx->ifc_softc_ctx; |
| 750 | if_shared_ctx_t sctx = ctx->ifc_sctx; |
| 751 | uint16_t first_txq = (sctx->isc_flags & IFLIB_HAS_TXCQ) ? 1 : 0; |
| 752 | |
| 753 | return scctx->isc_ntxd[first_txq]; |
| 754 | } |
| 755 | |
| 756 | #ifdef DEV_NETMAP |
| 757 | #include <sys/selinfo.h> |
no outgoing calls
no test coverage detected