| 475 | #endif |
| 476 | |
| 477 | static void |
| 478 | if_link_ifnet(struct ifnet *ifp) |
| 479 | { |
| 480 | |
| 481 | IFNET_WLOCK(); |
| 482 | CK_STAILQ_INSERT_TAIL(&V_ifnet, ifp, if_link); |
| 483 | #ifdef VIMAGE |
| 484 | curvnet->vnet_ifcnt++; |
| 485 | #endif |
| 486 | IFNET_WUNLOCK(); |
| 487 | } |
| 488 | |
| 489 | static bool |
| 490 | if_unlink_ifnet(struct ifnet *ifp, bool vmove) |
no outgoing calls
no test coverage detected