| 75 | #define NB_SOCKET_FIELDS (2) |
| 76 | |
| 77 | static uint32_t |
| 78 | find_lo(uint32_t lcore_id) |
| 79 | { |
| 80 | uint32_t i; |
| 81 | |
| 82 | for (i = 0; i < options.nb_los; i++) |
| 83 | if (options.los[i].lcore_id == lcore_id) |
| 84 | return i; |
| 85 | |
| 86 | return UINT32_MAX; |
| 87 | } |
| 88 | |
| 89 | /** support *SOCKET_FILE_PATH:CRYPTODEV_ID* format */ |
| 90 | static int |
no outgoing calls
no test coverage detected