Lines Matching defs:vsx

225 	vdev_stat_ex_t *vsx;
228 vsx = kmem_alloc(sizeof (*vsx), KM_SLEEP);
230 vdev_get_stats_ex(vd, vs, vsx);
243 vsx->vsx_active_queue[ZIO_PRIORITY_SYNC_READ]);
246 vsx->vsx_active_queue[ZIO_PRIORITY_SYNC_WRITE]);
249 vsx->vsx_active_queue[ZIO_PRIORITY_ASYNC_READ]);
252 vsx->vsx_active_queue[ZIO_PRIORITY_ASYNC_WRITE]);
255 vsx->vsx_active_queue[ZIO_PRIORITY_SCRUB]);
258 vsx->vsx_active_queue[ZIO_PRIORITY_TRIM]);
261 vsx->vsx_active_queue[ZIO_PRIORITY_REBUILD]);
265 vsx->vsx_pend_queue[ZIO_PRIORITY_SYNC_READ]);
268 vsx->vsx_pend_queue[ZIO_PRIORITY_SYNC_WRITE]);
271 vsx->vsx_pend_queue[ZIO_PRIORITY_ASYNC_READ]);
274 vsx->vsx_pend_queue[ZIO_PRIORITY_ASYNC_WRITE]);
277 vsx->vsx_pend_queue[ZIO_PRIORITY_SCRUB]);
280 vsx->vsx_pend_queue[ZIO_PRIORITY_TRIM]);
283 vsx->vsx_pend_queue[ZIO_PRIORITY_REBUILD]);
287 vsx->vsx_total_histo[ZIO_TYPE_READ],
288 ARRAY_SIZE(vsx->vsx_total_histo[ZIO_TYPE_READ]));
291 vsx->vsx_total_histo[ZIO_TYPE_WRITE],
292 ARRAY_SIZE(vsx->vsx_total_histo[ZIO_TYPE_WRITE]));
295 vsx->vsx_disk_histo[ZIO_TYPE_READ],
296 ARRAY_SIZE(vsx->vsx_disk_histo[ZIO_TYPE_READ]));
299 vsx->vsx_disk_histo[ZIO_TYPE_WRITE],
300 ARRAY_SIZE(vsx->vsx_disk_histo[ZIO_TYPE_WRITE]));
303 vsx->vsx_queue_histo[ZIO_PRIORITY_SYNC_READ],
304 ARRAY_SIZE(vsx->vsx_queue_histo[ZIO_PRIORITY_SYNC_READ]));
307 vsx->vsx_queue_histo[ZIO_PRIORITY_SYNC_WRITE],
308 ARRAY_SIZE(vsx->vsx_queue_histo[ZIO_PRIORITY_SYNC_WRITE]));
311 vsx->vsx_queue_histo[ZIO_PRIORITY_ASYNC_READ],
312 ARRAY_SIZE(vsx->vsx_queue_histo[ZIO_PRIORITY_ASYNC_READ]));
315 vsx->vsx_queue_histo[ZIO_PRIORITY_ASYNC_WRITE],
316 ARRAY_SIZE(vsx->vsx_queue_histo[ZIO_PRIORITY_ASYNC_WRITE]));
319 vsx->vsx_queue_histo[ZIO_PRIORITY_SCRUB],
320 ARRAY_SIZE(vsx->vsx_queue_histo[ZIO_PRIORITY_SCRUB]));
323 vsx->vsx_queue_histo[ZIO_PRIORITY_TRIM],
324 ARRAY_SIZE(vsx->vsx_queue_histo[ZIO_PRIORITY_TRIM]));
327 vsx->vsx_queue_histo[ZIO_PRIORITY_REBUILD],
328 ARRAY_SIZE(vsx->vsx_queue_histo[ZIO_PRIORITY_REBUILD]));
332 vsx->vsx_ind_histo[ZIO_PRIORITY_SYNC_READ],
333 ARRAY_SIZE(vsx->vsx_ind_histo[ZIO_PRIORITY_SYNC_READ]));
336 vsx->vsx_ind_histo[ZIO_PRIORITY_SYNC_WRITE],
337 ARRAY_SIZE(vsx->vsx_ind_histo[ZIO_PRIORITY_SYNC_WRITE]));
340 vsx->vsx_ind_histo[ZIO_PRIORITY_ASYNC_READ],
341 ARRAY_SIZE(vsx->vsx_ind_histo[ZIO_PRIORITY_ASYNC_READ]));
344 vsx->vsx_ind_histo[ZIO_PRIORITY_ASYNC_WRITE],
345 ARRAY_SIZE(vsx->vsx_ind_histo[ZIO_PRIORITY_ASYNC_WRITE]));
348 vsx->vsx_ind_histo[ZIO_PRIORITY_SCRUB],
349 ARRAY_SIZE(vsx->vsx_ind_histo[ZIO_PRIORITY_SCRUB]));
352 vsx->vsx_ind_histo[ZIO_PRIORITY_TRIM],
353 ARRAY_SIZE(vsx->vsx_ind_histo[ZIO_PRIORITY_TRIM]));
356 vsx->vsx_ind_histo[ZIO_PRIORITY_REBUILD],
357 ARRAY_SIZE(vsx->vsx_ind_histo[ZIO_PRIORITY_REBUILD]));
360 vsx->vsx_agg_histo[ZIO_PRIORITY_SYNC_READ],
361 ARRAY_SIZE(vsx->vsx_agg_histo[ZIO_PRIORITY_SYNC_READ]));
364 vsx->vsx_agg_histo[ZIO_PRIORITY_SYNC_WRITE],
365 ARRAY_SIZE(vsx->vsx_agg_histo[ZIO_PRIORITY_SYNC_WRITE]));
368 vsx->vsx_agg_histo[ZIO_PRIORITY_ASYNC_READ],
369 ARRAY_SIZE(vsx->vsx_agg_histo[ZIO_PRIORITY_ASYNC_READ]));
372 vsx->vsx_agg_histo[ZIO_PRIORITY_ASYNC_WRITE],
373 ARRAY_SIZE(vsx->vsx_agg_histo[ZIO_PRIORITY_ASYNC_WRITE]));
376 vsx->vsx_agg_histo[ZIO_PRIORITY_SCRUB],
377 ARRAY_SIZE(vsx->vsx_agg_histo[ZIO_PRIORITY_SCRUB]));
380 vsx->vsx_agg_histo[ZIO_PRIORITY_TRIM],
381 ARRAY_SIZE(vsx->vsx_agg_histo[ZIO_PRIORITY_TRIM]));
384 vsx->vsx_agg_histo[ZIO_PRIORITY_REBUILD],
385 ARRAY_SIZE(vsx->vsx_agg_histo[ZIO_PRIORITY_REBUILD]));
399 kmem_free(vsx, sizeof (*vsx));