| 452 | } |
| 453 | |
| 454 | static int |
| 455 | skeleton_eventdev_probe(struct rte_vdev_device *vdev) |
| 456 | { |
| 457 | const char *name; |
| 458 | |
| 459 | name = rte_vdev_device_name(vdev); |
| 460 | RTE_LOG(INFO, PMD, "Initializing %s on NUMA node %d\n", name, |
| 461 | rte_socket_id()); |
| 462 | return skeleton_eventdev_create(name, rte_socket_id(), vdev); |
| 463 | } |
| 464 | |
| 465 | static int |
| 466 | skeleton_eventdev_remove(struct rte_vdev_device *vdev) |
nothing calls this directly
no test coverage detected