| 1912 | } |
| 1913 | |
| 1914 | static int |
| 1915 | sfc_rx_queue_intr_disable(struct rte_eth_dev *dev, uint16_t ethdev_qid) |
| 1916 | { |
| 1917 | const struct sfc_adapter_priv *sap = sfc_adapter_priv_by_eth_dev(dev); |
| 1918 | struct sfc_adapter_shared *sas = sfc_adapter_shared_by_eth_dev(dev); |
| 1919 | sfc_ethdev_qid_t sfc_ethdev_qid = ethdev_qid; |
| 1920 | struct sfc_rxq_info *rxq_info; |
| 1921 | |
| 1922 | rxq_info = sfc_rxq_info_by_ethdev_qid(sas, sfc_ethdev_qid); |
| 1923 | |
| 1924 | return sap->dp_rx->intr_disable(rxq_info->dp); |
| 1925 | } |
| 1926 | |
| 1927 | struct sfc_mport_journal_ctx { |
| 1928 | struct sfc_adapter *sa; |
nothing calls this directly
no test coverage detected