| 948 | } |
| 949 | |
| 950 | static __inline struct mbuf * |
| 951 | m_get(int how, short type) |
| 952 | { |
| 953 | struct mbuf *m; |
| 954 | struct mb_args args; |
| 955 | |
| 956 | args.flags = 0; |
| 957 | args.type = type; |
| 958 | m = uma_zalloc_arg(zone_mbuf, &args, how); |
| 959 | MBUF_PROBE3(m__get, how, type, m); |
| 960 | return (m); |
| 961 | } |
| 962 | |
| 963 | static __inline struct mbuf * |
| 964 | m_gethdr(int how, short type) |
no test coverage detected