MCPcopy Create free account
hub / github.com/F-Stack/f-stack / enicpmd_dev_tx_queue_stop

Function enicpmd_dev_tx_queue_stop

dpdk/drivers/net/enic/enic_ethdev.c:186–199  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

184}
185
186static int enicpmd_dev_tx_queue_stop(struct rte_eth_dev *eth_dev,
187 uint16_t queue_idx)
188{
189 int ret;
190 struct enic *enic = pmd_priv(eth_dev);
191
192 ENICPMD_FUNC_TRACE();
193
194 ret = enic_stop_wq(enic, queue_idx);
195 if (ret)
196 dev_err(enic, "error in stopping wq %d\n", queue_idx);
197
198 return ret;
199}
200
201static int enicpmd_dev_rx_queue_start(struct rte_eth_dev *eth_dev,
202 uint16_t queue_idx)

Callers

nothing calls this directly

Calls 2

pmd_privFunction · 0.85
enic_stop_wqFunction · 0.85

Tested by

no test coverage detected