Lines Matching full:mtp

63 	struct memory_type *mtp;  in mbpr()  local
112 mtp = memstat_mtl_find(mtlp, ALLOCATOR_UMA, MBUF_MEM_NAME); in mbpr()
113 if (mtp == NULL) { in mbpr()
117 mbuf_count = memstat_get_count(mtp); in mbpr()
118 mbuf_bytes = memstat_get_bytes(mtp); in mbpr()
119 mbuf_free = memstat_get_free(mtp); in mbpr()
120 mbuf_failures = memstat_get_failures(mtp); in mbpr()
121 mbuf_sleeps = memstat_get_sleeps(mtp); in mbpr()
122 mbuf_size = memstat_get_size(mtp); in mbpr()
124 mtp = memstat_mtl_find(mtlp, ALLOCATOR_UMA, MBUF_PACKET_MEM_NAME); in mbpr()
125 if (mtp == NULL) { in mbpr()
130 packet_count = memstat_get_count(mtp); in mbpr()
131 packet_bytes = memstat_get_bytes(mtp); in mbpr()
132 packet_free = memstat_get_free(mtp); in mbpr()
133 packet_sleeps = memstat_get_sleeps(mtp); in mbpr()
134 packet_failures = memstat_get_failures(mtp); in mbpr()
136 mtp = memstat_mtl_find(mtlp, ALLOCATOR_UMA, MBUF_CLUSTER_MEM_NAME); in mbpr()
137 if (mtp == NULL) { in mbpr()
142 cluster_count = memstat_get_count(mtp); in mbpr()
143 cluster_limit = memstat_get_countlimit(mtp); in mbpr()
144 cluster_free = memstat_get_free(mtp); in mbpr()
145 cluster_failures = memstat_get_failures(mtp); in mbpr()
146 cluster_sleeps = memstat_get_sleeps(mtp); in mbpr()
147 cluster_size = memstat_get_size(mtp); in mbpr()
149 mtp = memstat_mtl_find(mtlp, ALLOCATOR_MALLOC, MBUF_TAG_MEM_NAME); in mbpr()
150 if (mtp == NULL) { in mbpr()
155 tag_bytes = memstat_get_bytes(mtp); in mbpr()
157 mtp = memstat_mtl_find(mtlp, ALLOCATOR_UMA, MBUF_JUMBOP_MEM_NAME); in mbpr()
158 if (mtp == NULL) { in mbpr()
163 jumbop_count = memstat_get_count(mtp); in mbpr()
164 jumbop_limit = memstat_get_countlimit(mtp); in mbpr()
165 jumbop_free = memstat_get_free(mtp); in mbpr()
166 jumbop_failures = memstat_get_failures(mtp); in mbpr()
167 jumbop_sleeps = memstat_get_sleeps(mtp); in mbpr()
168 jumbop_size = memstat_get_size(mtp); in mbpr()
170 mtp = memstat_mtl_find(mtlp, ALLOCATOR_UMA, MBUF_JUMBO9_MEM_NAME); in mbpr()
171 if (mtp == NULL) { in mbpr()
176 jumbo9_count = memstat_get_count(mtp); in mbpr()
177 jumbo9_limit = memstat_get_countlimit(mtp); in mbpr()
178 jumbo9_free = memstat_get_free(mtp); in mbpr()
179 jumbo9_failures = memstat_get_failures(mtp); in mbpr()
180 jumbo9_sleeps = memstat_get_sleeps(mtp); in mbpr()
181 jumbo9_size = memstat_get_size(mtp); in mbpr()
183 mtp = memstat_mtl_find(mtlp, ALLOCATOR_UMA, MBUF_JUMBO16_MEM_NAME); in mbpr()
184 if (mtp == NULL) { in mbpr()
189 jumbo16_count = memstat_get_count(mtp); in mbpr()
190 jumbo16_limit = memstat_get_countlimit(mtp); in mbpr()
191 jumbo16_free = memstat_get_free(mtp); in mbpr()
192 jumbo16_failures = memstat_get_failures(mtp); in mbpr()
193 jumbo16_sleeps = memstat_get_sleeps(mtp); in mbpr()
194 jumbo16_size = memstat_get_size(mtp); in mbpr()