| 292 | } |
| 293 | |
| 294 | static int |
| 295 | parse_eventdev_reset_xstats_params(const char *list) |
| 296 | { |
| 297 | int evdev_id = parse_eventdev_id(list); |
| 298 | |
| 299 | if (evdev_id < 0) |
| 300 | return -EINVAL; |
| 301 | |
| 302 | eventdev_var[evdev_id].reset_xstats = 1; |
| 303 | |
| 304 | return 0; |
| 305 | } |
| 306 | |
| 307 | static int |
| 308 | parse_eventdev_device_xstats_params(const char *list) |
no test coverage detected