| 2565 | } |
| 2566 | |
| 2567 | static void |
| 2568 | clear_llinfo_pqueue(struct llentry *ln) |
| 2569 | { |
| 2570 | struct mbuf *m_hold, *m_hold_next; |
| 2571 | |
| 2572 | for (m_hold = ln->la_hold; m_hold; m_hold = m_hold_next) { |
| 2573 | m_hold_next = m_hold->m_nextpkt; |
| 2574 | m_freem(m_hold); |
| 2575 | } |
| 2576 | |
| 2577 | ln->la_hold = NULL; |
| 2578 | } |
| 2579 | |
| 2580 | static int |
| 2581 | nd6_sysctl_prlist(SYSCTL_HANDLER_ARGS) |
no test coverage detected