| 7479 | } |
| 7480 | |
| 7481 | uint32_t |
| 7482 | ixgbe_rssrk_reg_get(enum ixgbe_mac_type mac_type, uint8_t i) { |
| 7483 | switch (mac_type) { |
| 7484 | case ixgbe_mac_X550_vf: |
| 7485 | case ixgbe_mac_X550EM_x_vf: |
| 7486 | case ixgbe_mac_X550EM_a_vf: |
| 7487 | return IXGBE_VFRSSRK(i); |
| 7488 | default: |
| 7489 | return IXGBE_RSSRK(i); |
| 7490 | } |
| 7491 | } |
| 7492 | |
| 7493 | bool |
| 7494 | ixgbe_rss_update_sp(enum ixgbe_mac_type mac_type) { |
no outgoing calls
no test coverage detected