* Un-initialize process private data structure. * * @param dev * Pointer to Ethernet device structure. */
| 226 | * Pointer to Ethernet device structure. |
| 227 | */ |
| 228 | void |
| 229 | mlx4_proc_priv_uninit(struct rte_eth_dev *dev) |
| 230 | { |
| 231 | if (!dev->process_private) |
| 232 | return; |
| 233 | rte_free(dev->process_private); |
| 234 | dev->process_private = NULL; |
| 235 | } |
| 236 | |
| 237 | /** |
| 238 | * DPDK callback for Ethernet device configuration. |
no test coverage detected