On Thu 02 Nov 2017 11:55:26 AM CET, Pradeep Jagadeesh wrote: >>> - if (arg->has_iops_rd_max_length) { >>> - cfg.buckets[THROTTLE_OPS_READ].burst_length = >>> arg->iops_rd_max_length; >>> - } >>> - if (arg->has_iops_wr_max_length) { >>> - cfg.buckets[THROTTLE_OPS_WRITE].burst_length = >>> arg->iops_wr_max_length; >>> - } >>> - >>> - if (arg->has_iops_size) { >>> - cfg.op_size = arg->iops_size; >>> - } >> >> The old code takes an empty ThrottleConfig, and initializes it using the >> values from a BlockIOThrottle structure... >> >>> + tlimit = qapi_BlockIOThrottle_base(arg); >>> + throttle_config_to_limits(&cfg, tlimit); >> >> ...but the new code does the exact opposite (?). > > Its a mistake of a call. It should be throttle_limits_to_config() > I will change it.
Thanks! It would be nice if the series had a few tests to verify that this all is working as expected :-) Berto