| 961 | } |
| 962 | |
| 963 | static __inline struct mbuf * |
| 964 | m_gethdr(int how, short type) |
| 965 | { |
| 966 | struct mbuf *m; |
| 967 | struct mb_args args; |
| 968 | |
| 969 | args.flags = M_PKTHDR; |
| 970 | args.type = type; |
| 971 | m = uma_zalloc_arg(zone_mbuf, &args, how); |
| 972 | MBUF_PROBE3(m__gethdr, how, type, m); |
| 973 | return (m); |
| 974 | } |
| 975 | |
| 976 | static __inline struct mbuf * |
| 977 | m_getcl(int how, short type, int flags) |
no test coverage detected