* Interrupt handler triggered by NIC for handling * specific interrupt. * * @param handle * Pointer to interrupt handle. * @param param * The address of parameter (struct rte_eth_dev *) registered before. * * @return * void */
| 4794 | * void |
| 4795 | */ |
| 4796 | static void |
| 4797 | ixgbe_dev_interrupt_handler(void *param) |
| 4798 | { |
| 4799 | struct rte_eth_dev *dev = (struct rte_eth_dev *)param; |
| 4800 | |
| 4801 | ixgbe_dev_interrupt_get_status(dev); |
| 4802 | ixgbe_dev_interrupt_action(dev); |
| 4803 | } |
| 4804 | |
| 4805 | static int |
| 4806 | ixgbe_dev_led_on(struct rte_eth_dev *dev) |
nothing calls this directly
no test coverage detected