| 511 | } |
| 512 | |
| 513 | static void |
| 514 | cleanup_pdump_resources(void) |
| 515 | { |
| 516 | struct interface *intf; |
| 517 | |
| 518 | TAILQ_FOREACH(intf, &interfaces, next) { |
| 519 | rte_pdump_disable(intf->port, |
| 520 | RTE_PDUMP_ALL_QUEUES, RTE_PDUMP_FLAG_RXTX); |
| 521 | if (intf->opts.promisc_mode) |
| 522 | rte_eth_promiscuous_disable(intf->port); |
| 523 | } |
| 524 | } |
| 525 | |
| 526 | /* Alarm signal handler, used to check that primary process */ |
| 527 | static void |
no test coverage detected