| 317 | } |
| 318 | |
| 319 | static inline int trie_reload_data(int initial) |
| 320 | { |
| 321 | struct head_db *part; |
| 322 | int ret_val = 0; |
| 323 | |
| 324 | for (part = head_db_start; part; part = part->next) |
| 325 | if (trie_reload_data_head(part, &part->partition, initial) != 0) |
| 326 | ret_val = -1; |
| 327 | |
| 328 | return ret_val; |
| 329 | } |
| 330 | |
| 331 | static int cleanup_head_config( struct head_config *hd) |
| 332 | { |
no test coverage detected