MCPcopy Create free account
hub / github.com/F-Stack/f-stack / atl_dev_interrupt_handler

Function atl_dev_interrupt_handler

dpdk/drivers/net/atlantic/atl_ethdev.c:1431–1438  ·  view source on GitHub ↗

* 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 */

Source from the content-addressed store, hash-verified

1429 * void
1430 */
1431static void
1432atl_dev_interrupt_handler(void *param)
1433{
1434 struct rte_eth_dev *dev = (struct rte_eth_dev *)param;
1435
1436 atl_dev_interrupt_get_status(dev);
1437 atl_dev_interrupt_action(dev, dev->intr_handle);
1438}
1439
1440
1441static int

Callers

nothing calls this directly

Calls 2

atl_dev_interrupt_actionFunction · 0.85

Tested by

no test coverage detected