| 305 | } |
| 306 | |
| 307 | static int |
| 308 | parse_eventdev_device_xstats_params(const char *list) |
| 309 | { |
| 310 | int evdev_id = parse_eventdev_id(list); |
| 311 | |
| 312 | if (evdev_id < 0) |
| 313 | return -EINVAL; |
| 314 | |
| 315 | eventdev_var[evdev_id].shw_device_xstats = 1; |
| 316 | |
| 317 | return 0; |
| 318 | } |
| 319 | |
| 320 | static int |
| 321 | parse_eventdev_queue_xstats_params(const char *list) |
no test coverage detected