Lines Matching full:throttle
17 it works internally. The implementation is in throttle.c.
258 The 'throttle' block filter
261 'throttle' block filter. This filter uses the exact same throttling
274 "qom-type": "throttle-group",
283 throttle-group has a 'limits' property (of type ThrottleLimits as
287 A throttle-group can also be created with the -object command line
292 -object throttle-group,id=group0,x-iops-total=1000,x-bps-write=2097152
298 Once we have a throttle-group we can use the throttle block filter,
317 "driver": "throttle",
319 "throttle-group": "group0",
326 -drive driver=throttle,throttle-group=group0,
329 The scenario described so far is very simple but the throttle block
335 First we would define all throttle groups, one for each one of the
338 -object throttle-group,id=limits0,x-iops-total=2000
339 -object throttle-group,id=limits1,x-iops-total=2500
340 -object throttle-group,id=limits2,x-iops-total=3000
341 -object throttle-group,id=limits012,x-iops-total=4000
344 chained throttle filters: the drive's own filter and the combined
347 -drive driver=throttle,throttle-group=limits012,
348 file.driver=throttle,file.throttle-group=limits0
350 -drive driver=throttle,throttle-group=limits012,
351 file.driver=throttle,file.throttle-group=limits1
353 -drive driver=throttle,throttle-group=limits012,
354 file.driver=throttle,file.throttle-group=limits2