| 1884 | } |
| 1885 | |
| 1886 | static int |
| 1887 | sfc_pool_ops_supported(struct rte_eth_dev *dev, const char *pool) |
| 1888 | { |
| 1889 | const struct sfc_adapter_priv *sap = sfc_adapter_priv_by_eth_dev(dev); |
| 1890 | |
| 1891 | /* |
| 1892 | * If Rx datapath does not provide callback to check mempool, |
| 1893 | * all pools are supported. |
| 1894 | */ |
| 1895 | if (sap->dp_rx->pool_ops_supported == NULL) |
| 1896 | return 1; |
| 1897 | |
| 1898 | return sap->dp_rx->pool_ops_supported(pool); |
| 1899 | } |
| 1900 | |
| 1901 | static int |
| 1902 | sfc_rx_queue_intr_enable(struct rte_eth_dev *dev, uint16_t ethdev_qid) |
nothing calls this directly
no test coverage detected