| 377 | } |
| 378 | |
| 379 | static inline int |
| 380 | evict_from_bucket(void) |
| 381 | { |
| 382 | /* For now, we randomly pick one entry to evict */ |
| 383 | return rte_rand() & (RTE_MEMBER_BUCKET_ENTRIES - 1); |
| 384 | } |
| 385 | |
| 386 | /* |
| 387 | * This function is similar to the cuckoo hash make_space function in hash |
no test coverage detected