/openbmc/linux/drivers/acpi/ |
D | processor_throttling.c |
|
/openbmc/qemu/fsdev/ |
H A D | qemu-fsdev.c | 62 "throttling.bps-total", 63 "throttling.bps-read", 64 "throttling.bps-write", 65 "throttling.iops-total", 66 "throttling.iops-read", 67 "throttling.iops-write", 68 "throttling.bps-total-max", 69 "throttling.bps-read-max", 70 "throttling.bps-write-max", 71 "throttling.iops-total-max", [all …]
|
H A D | qemu-fsdev-throttle.c | 38 qemu_opt_get_number(opts, "throttling.bps-total", 0); in fsdev_throttle_parse_opts() 40 qemu_opt_get_number(opts, "throttling.bps-read", 0); in fsdev_throttle_parse_opts() 42 qemu_opt_get_number(opts, "throttling.bps-write", 0); in fsdev_throttle_parse_opts() 44 qemu_opt_get_number(opts, "throttling.iops-total", 0); in fsdev_throttle_parse_opts() 46 qemu_opt_get_number(opts, "throttling.iops-read", 0); in fsdev_throttle_parse_opts() 48 qemu_opt_get_number(opts, "throttling.iops-write", 0); in fsdev_throttle_parse_opts() 51 qemu_opt_get_number(opts, "throttling.bps-total-max", 0); in fsdev_throttle_parse_opts() 53 qemu_opt_get_number(opts, "throttling.bps-read-max", 0); in fsdev_throttle_parse_opts() 55 qemu_opt_get_number(opts, "throttling.bps-write-max", 0); in fsdev_throttle_parse_opts() 57 qemu_opt_get_number(opts, "throttling.iops-total-max", 0); in fsdev_throttle_parse_opts() [all …]
|
/openbmc/qemu/docs/ |
H A D | throttle.txt | 1 The QEMU throttling infrastructure 11 QEMU includes a throttling module that can be used to set limits to 16 This document explains how to use the throttling code in QEMU, and how 20 Using throttling to limit disk I/O 27 I/O limits can be set using the throttling.* parameters of -drive, or 34 | throttling.iops-total | iops | 35 | throttling.iops-read | iops_rd | 36 | throttling.iops-write | iops_wr | 37 | throttling.bps-total | bps | 38 | throttling.bps-read | bps_rd | [all …]
|
/openbmc/qemu/tests/qemu-iotests/ |
H A D | 051.out | 275 Testing: -drive file=TEST_DIR/t.qcow2,iops=1234,throttling.iops-total=5678 276 QEMU_PROG: -drive file=TEST_DIR/t.qcow2,iops=1234,throttling.iops-total=5678: 'throttling.iops-tota… 278 Testing: -drive file=TEST_DIR/t.qcow2,iops_rd=1234,throttling.iops-read=5678 279 QEMU_PROG: -drive file=TEST_DIR/t.qcow2,iops_rd=1234,throttling.iops-read=5678: 'throttling.iops-re… 281 Testing: -drive file=TEST_DIR/t.qcow2,iops_wr=1234,throttling.iops-write=5678 282 QEMU_PROG: -drive file=TEST_DIR/t.qcow2,iops_wr=1234,throttling.iops-write=5678: 'throttling.iops-w… 284 Testing: -drive file=TEST_DIR/t.qcow2,bps=1234,throttling.bps-total=5678 285 QEMU_PROG: -drive file=TEST_DIR/t.qcow2,bps=1234,throttling.bps-total=5678: 'throttling.bps-total' … 287 Testing: -drive file=TEST_DIR/t.qcow2,bps_rd=1234,throttling.bps-read=5678 288 QEMU_PROG: -drive file=TEST_DIR/t.qcow2,bps_rd=1234,throttling.bps-read=5678: 'throttling.bps-read'… [all …]
|
H A D | 051.pc.out | 355 Testing: -drive file=TEST_DIR/t.qcow2,iops=1234,throttling.iops-total=5678 356 QEMU_PROG: -drive file=TEST_DIR/t.qcow2,iops=1234,throttling.iops-total=5678: 'throttling.iops-tota… 358 Testing: -drive file=TEST_DIR/t.qcow2,iops_rd=1234,throttling.iops-read=5678 359 QEMU_PROG: -drive file=TEST_DIR/t.qcow2,iops_rd=1234,throttling.iops-read=5678: 'throttling.iops-re… 361 Testing: -drive file=TEST_DIR/t.qcow2,iops_wr=1234,throttling.iops-write=5678 362 QEMU_PROG: -drive file=TEST_DIR/t.qcow2,iops_wr=1234,throttling.iops-write=5678: 'throttling.iops-w… 364 Testing: -drive file=TEST_DIR/t.qcow2,bps=1234,throttling.bps-total=5678 365 QEMU_PROG: -drive file=TEST_DIR/t.qcow2,bps=1234,throttling.bps-total=5678: 'throttling.bps-total' … 367 Testing: -drive file=TEST_DIR/t.qcow2,bps_rd=1234,throttling.bps-read=5678 368 QEMU_PROG: -drive file=TEST_DIR/t.qcow2,bps_rd=1234,throttling.bps-read=5678: 'throttling.bps-read'… [all …]
|
H A D | 051 | 286 run_qemu -drive file="$TEST_IMG",iops=1234,throttling.iops-total=5678 287 run_qemu -drive file="$TEST_IMG",iops_rd=1234,throttling.iops-read=5678 288 run_qemu -drive file="$TEST_IMG",iops_wr=1234,throttling.iops-write=5678 290 run_qemu -drive file="$TEST_IMG",bps=1234,throttling.bps-total=5678 291 run_qemu -drive file="$TEST_IMG",bps_rd=1234,throttling.bps-read=5678 292 run_qemu -drive file="$TEST_IMG",bps_wr=1234,throttling.bps-write=5678 294 run_qemu -drive file="$TEST_IMG",iops_max=1234,throttling.iops-total-max=5678 295 run_qemu -drive file="$TEST_IMG",iops_rd_max=1234,throttling.iops-read-max=5678 296 run_qemu -drive file="$TEST_IMG",iops_wr_max=1234,throttling.iops-write-max=5678 298 run_qemu -drive file="$TEST_IMG",bps_max=1234,throttling.bps-total-max=5678 [all …]
|
H A D | 096 | 4 # Test that snapshots move the throttling configuration to the active 36 opts.append('throttling.group=%s' % self.group) 37 opts.append('throttling.iops-total=%d' % self.iops) 38 opts.append('throttling.iops-size=%d' % self.iops_size)
|
H A D | 093 | 4 # Tests for IO throttling 55 # Set the I/O throttling parameters to all drives 62 # IO throttling algorithm is discrete, allow 10% error so the test 72 # Submit enough requests so the throttling mechanism kicks 195 # Configure the throttling settings 279 "throttling.iops-total=100,file.read-zeroes=on") 311 # The default throttling group name is the device name. 316 # Clear throttling settings => the group name is gone. 322 # Set throttling settings using block_set_io_throttle and 358 # Clear throttling settings from drive0 check that all other
|
/openbmc/phosphor-dbus-interfaces/yaml/org/open_power/OCC/ |
H A D | Status.interface.yaml | 13 Indicates processor throttling due to an over temperature condition 18 Indicates processor throttling due to reaching the power cap limit 23 Indicates memory throttling due to an over temperature condition
|
/openbmc/linux/drivers/net/wireless/intel/iwlwifi/dvm/ |
D | tt.c |
|
/openbmc/linux/Documentation/admin-guide/cgroup-v1/ |
D | blkio-controller.rst |
|
/openbmc/qemu/include/system/ |
H A D | cpu-throttle.h | 27 * Initialize the CPU throttling API. 40 * Once the throttling starts, it will remain in effect until cpu_throttle_stop 48 * Stops the vcpu throttling started by cpu_throttle_set.
|
/openbmc/linux/drivers/gpu/drm/etnaviv/ |
D | Kconfig |
|
/openbmc/linux/include/linux/ |
D | dm-kcopyd.h |
|
/openbmc/qemu/util/ |
H A D | throttle.c | 2 * QEMU throttling infrastructure 79 * @limit: the throttling limit 98 double bucket_size; /* I/O before throttling to bkt->avg */ in throttle_compute_wait() 99 double burst_bucket_size; /* Before throttling to bkt->max */ in throttle_compute_wait() 113 * at burst rate has finished before throttling to bkt->avg */ in throttle_compute_wait() 279 /* is any throttling timer configured */ 293 /* Does any throttling must be done 295 * @cfg: the throttling configuration to inspect 296 * @ret: true if throttling must be done else false 311 /* check if a throttling configuration is valid [all …]
|
/openbmc/phosphor-dbus-interfaces/yaml/xyz/openbmc_project/Control/Power/ |
H A D | Throttle.interface.yaml | 45 - name: throttling 48 'throttling' association to provide a link to an Item.
|
/openbmc/linux/Documentation/ABI/testing/ |
D | sysfs-platform-dfl-fme |
|
/openbmc/qemu/ |
H A D | blockdev.c | 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() [all …]
|
/openbmc/linux/tools/perf/pmu-events/arch/x86/jaketown/ |
D | uncore-memory.json |
|
/openbmc/linux/Documentation/networking/device_drivers/ethernet/aquantia/ |
D | atlantic.rst |
|
/openbmc/qemu/include/qemu/ |
H A D | throttle-options.h | 2 * QEMU throttling command line options 34 #define THROTTLE_OPT_PREFIX "throttling."
|
/openbmc/openbmc/meta-openembedded/meta-webserver/recipes-httpd/sthttpd/sthttpd/ |
H A D | thttpd.service | 2 Description=Tiny/Turbo/Throttling Web Server
|
/openbmc/linux/tools/perf/pmu-events/arch/x86/graniterapids/ |
D | pipeline.json |
|
/openbmc/qemu/hw/char/ |
H A D | virtio-console.c | 82 * so if we enable throttling that'll stall the entire in flush_buf() 87 * enabling throttling, this would result in the guest in flush_buf() 96 * use throttling on host side. in flush_buf()
|