| 308 | } |
| 309 | |
| 310 | static int |
| 311 | test_app_get_worker_index(struct test_app *app, unsigned int lcore_id) |
| 312 | { |
| 313 | int i; |
| 314 | |
| 315 | for (i = 0; i < NUM_SERVICE_CORES; i++) |
| 316 | if (app->service_lcores[i] == lcore_id) |
| 317 | return i; |
| 318 | |
| 319 | return -1; |
| 320 | } |
| 321 | |
| 322 | static int |
| 323 | test_app_get_worker_port(struct test_app *app, unsigned int lcore_id) |
no outgoing calls
no test coverage detected