| 663 | } |
| 664 | |
| 665 | struct ifnet * |
| 666 | if_alloc(u_char type) |
| 667 | { |
| 668 | |
| 669 | return (if_alloc_domain(type, IF_NODOM)); |
| 670 | } |
| 671 | /* |
| 672 | * Do the actual work of freeing a struct ifnet, and layer 2 common |
| 673 | * structure. This call is made when the last reference to an |
no test coverage detected