* Interrupt handler triggered by NIC for handling * specific interrupt. * * @param param * The address of parameter registered before. * * @return * void */
| 320 | * void |
| 321 | */ |
| 322 | void |
| 323 | ionic_dev_interrupt_handler(void *param) |
| 324 | { |
| 325 | struct ionic_adapter *adapter = (struct ionic_adapter *)param; |
| 326 | |
| 327 | IONIC_PRINT(DEBUG, "->"); |
| 328 | |
| 329 | if (adapter->lif) |
| 330 | ionic_notifyq_handler(adapter->lif, -1); |
| 331 | } |
| 332 | |
| 333 | static int |
| 334 | ionic_dev_mtu_set(struct rte_eth_dev *eth_dev, uint16_t mtu) |
nothing calls this directly
no test coverage detected