| 2601 | } |
| 2602 | |
| 2603 | static int rtpe_is_ignore_node(struct rtpe_ignore_node *list, struct rtpe_node *node) |
| 2604 | { |
| 2605 | struct rtpe_ignore_node *it; |
| 2606 | for (it = list; it; it = it->next) |
| 2607 | if (it->node == node) |
| 2608 | return 1; |
| 2609 | return 0; |
| 2610 | } |
| 2611 | |
| 2612 | static void rtpe_free_ignore_node(struct rtpe_ignore_node *list) |
| 2613 | { |
no outgoing calls
no test coverage detected