diff options
| author | Alberto Garcia | 2016-02-18 11:26:57 +0100 |
|---|---|---|
| committer | Kevin Wolf | 2016-02-22 14:08:04 +0100 |
| commit | 03ba36c83d136a9d039b56f0a834e65676b58c22 (patch) | |
| tree | dcef5a35ed1db583b904acd54d1ffac234db5e6b /blockdev.c | |
| parent | throttle: Make throttle_max_is_missing_limit() set errp (diff) | |
| download | qemu-03ba36c83d136a9d039b56f0a834e65676b58c22.tar.gz qemu-03ba36c83d136a9d039b56f0a834e65676b58c22.tar.xz qemu-03ba36c83d136a9d039b56f0a834e65676b58c22.zip | |
throttle: Make throttle_is_valid() set errp
The caller does not need to set it, and this will allow us to refactor
this function later.
Signed-off-by: Alberto Garcia <berto@igalia.com>
Reviewed-by: Kevin Wolf <kwolf@redhat.com>
Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Diffstat (limited to 'blockdev.c')
| -rw-r--r-- | blockdev.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/blockdev.c b/blockdev.c index 52aabf7b90..11a3139851 100644 --- a/blockdev.c +++ b/blockdev.c @@ -349,9 +349,7 @@ static bool check_throttle_config(ThrottleConfig *cfg, Error **errp) return false; } - if (!throttle_is_valid(cfg)) { - error_setg(errp, "bps/iops/max values must be within [0, %lld]", - THROTTLE_VALUE_MAX); + if (!throttle_is_valid(cfg, errp)) { return false; } |
