diff options
author | Markus Armbruster <armbru@redhat.com> | 2015-03-13 18:51:38 +0100 |
---|---|---|
committer | Kevin Wolf <kwolf@redhat.com> | 2015-03-16 17:07:25 +0100 |
commit | 6ec46ad541b20a1530cedc741d19eea9ffc39ac3 (patch) | |
tree | 012ab1df86f36c93cbfe493d07432e55573f8700 /qapi | |
parent | a1f688f4152e65260b94f37543521ceff8bfebe4 (diff) | |
download | qemu-6ec46ad541b20a1530cedc741d19eea9ffc39ac3.zip |
block: Fix block-set-write-threshold not to use funky error class
Error classes are a leftover from the days of "rich" error objects.
New code should always use ERROR_CLASS_GENERIC_ERROR. Commit e246211
added a use of ERROR_CLASS_DEVICE_NOT_FOUND. Replace it.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Diffstat (limited to 'qapi')
-rw-r--r-- | qapi/block-core.json | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/qapi/block-core.json b/qapi/block-core.json index 90586a5949..42c885047f 100644 --- a/qapi/block-core.json +++ b/qapi/block-core.json @@ -1961,10 +1961,6 @@ # @write-threshold: configured threshold for the block device, bytes. # Use 0 to disable the threshold. # -# Returns: Nothing on success -# If @node name is not found on the block device graph, -# DeviceNotFound -# # Since: 2.3 ## { 'command': 'block-set-write-threshold', |