Disable RSS */
| 7613 | |
| 7614 | /* Disable RSS */ |
| 7615 | void |
| 7616 | i40e_pf_disable_rss(struct i40e_pf *pf) |
| 7617 | { |
| 7618 | struct i40e_hw *hw = I40E_PF_TO_HW(pf); |
| 7619 | |
| 7620 | i40e_write_rx_ctl(hw, I40E_PFQF_HENA(0), 0); |
| 7621 | i40e_write_rx_ctl(hw, I40E_PFQF_HENA(1), 0); |
| 7622 | I40E_WRITE_FLUSH(hw); |
| 7623 | } |
| 7624 | |
| 7625 | int |
| 7626 | i40e_set_rss_key(struct i40e_vsi *vsi, uint8_t *key, uint8_t key_len) |
no test coverage detected