| 483 | } |
| 484 | |
| 485 | static int |
| 486 | fs_parse_sub_device(struct sub_device *sdev) |
| 487 | { |
| 488 | struct rte_devargs *da; |
| 489 | char devstr[DEVARGS_MAXLEN] = ""; |
| 490 | |
| 491 | da = &sdev->devargs; |
| 492 | snprintf(devstr, sizeof(devstr), "%s,%s", da->name, da->args); |
| 493 | return fs_parse_device(sdev, devstr); |
| 494 | } |
| 495 | |
| 496 | int |
| 497 | failsafe_args_parse_subs(struct rte_eth_dev *dev) |
no test coverage detected