Lines Matching full:throttling

400     /* disk I/O throttling */  in extract_common_blockdev_options()
402 *throttling_group = qemu_opt_get(opts, "throttling.group"); in extract_common_blockdev_options()
408 qemu_opt_get_number(opts, "throttling.bps-total", 0); in extract_common_blockdev_options()
410 qemu_opt_get_number(opts, "throttling.bps-read", 0); in extract_common_blockdev_options()
412 qemu_opt_get_number(opts, "throttling.bps-write", 0); in extract_common_blockdev_options()
414 qemu_opt_get_number(opts, "throttling.iops-total", 0); in extract_common_blockdev_options()
416 qemu_opt_get_number(opts, "throttling.iops-read", 0); in extract_common_blockdev_options()
418 qemu_opt_get_number(opts, "throttling.iops-write", 0); in extract_common_blockdev_options()
421 qemu_opt_get_number(opts, "throttling.bps-total-max", 0); in extract_common_blockdev_options()
423 qemu_opt_get_number(opts, "throttling.bps-read-max", 0); in extract_common_blockdev_options()
425 qemu_opt_get_number(opts, "throttling.bps-write-max", 0); in extract_common_blockdev_options()
427 qemu_opt_get_number(opts, "throttling.iops-total-max", 0); in extract_common_blockdev_options()
429 qemu_opt_get_number(opts, "throttling.iops-read-max", 0); in extract_common_blockdev_options()
431 qemu_opt_get_number(opts, "throttling.iops-write-max", 0); in extract_common_blockdev_options()
434 qemu_opt_get_number(opts, "throttling.bps-total-max-length", 1); in extract_common_blockdev_options()
436 qemu_opt_get_number(opts, "throttling.bps-read-max-length", 1); in extract_common_blockdev_options()
438 qemu_opt_get_number(opts, "throttling.bps-write-max-length", 1); in extract_common_blockdev_options()
440 qemu_opt_get_number(opts, "throttling.iops-total-max-length", 1); in extract_common_blockdev_options()
442 qemu_opt_get_number(opts, "throttling.iops-read-max-length", 1); in extract_common_blockdev_options()
444 qemu_opt_get_number(opts, "throttling.iops-write-max-length", 1); in extract_common_blockdev_options()
447 qemu_opt_get_number(opts, "throttling.iops-size", 0); in extract_common_blockdev_options()
629 /* disk I/O throttling */ in blockdev_init()
799 { "iops", "throttling.iops-total" }, in drive_new()
800 { "iops_rd", "throttling.iops-read" }, in drive_new()
801 { "iops_wr", "throttling.iops-write" }, in drive_new()
803 { "bps", "throttling.bps-total" }, in drive_new()
804 { "bps_rd", "throttling.bps-read" }, in drive_new()
805 { "bps_wr", "throttling.bps-write" }, in drive_new()
807 { "iops_max", "throttling.iops-total-max" }, in drive_new()
808 { "iops_rd_max", "throttling.iops-read-max" }, in drive_new()
809 { "iops_wr_max", "throttling.iops-write-max" }, in drive_new()
811 { "bps_max", "throttling.bps-total-max" }, in drive_new()
812 { "bps_rd_max", "throttling.bps-read-max" }, in drive_new()
813 { "bps_wr_max", "throttling.bps-write-max" }, in drive_new()
815 { "iops_size", "throttling.iops-size" }, in drive_new()
817 { "group", "throttling.group" }, in drive_new()
3616 .name = "throttling.group",
3618 .help = "name of the block throttling group",