| 279 | } |
| 280 | |
| 281 | static int |
| 282 | parse_eventdev_dump_xstats_params(const char *list) |
| 283 | { |
| 284 | int evdev_id = parse_eventdev_id(list); |
| 285 | |
| 286 | if (evdev_id < 0) |
| 287 | return -EINVAL; |
| 288 | |
| 289 | eventdev_var[evdev_id].dump_xstats = 1; |
| 290 | |
| 291 | return 0; |
| 292 | } |
| 293 | |
| 294 | static int |
| 295 | parse_eventdev_reset_xstats_params(const char *list) |
no test coverage detected