* Returns TRUE if it can be determined that key does not belong to the * specified node. Otherwise, returns FALSE. */
| 281 | * specified node. Otherwise, returns FALSE. |
| 282 | */ |
| 283 | static __inline bool |
| 284 | pctrie_keybarr(struct pctrie_node *node, uint64_t idx) |
| 285 | { |
| 286 | |
| 287 | if (node->pn_clev < PCTRIE_LIMIT) { |
| 288 | idx = pctrie_trimkey(idx, node->pn_clev + 1); |
| 289 | return (idx != node->pn_owner); |
| 290 | } |
| 291 | return (false); |
| 292 | } |
| 293 | |
| 294 | /* |
| 295 | * Internal helper for pctrie_reclaim_allnodes(). |
no test coverage detected