aboutsummaryrefslogtreecommitdiff
path: root/qapi-schema.json
diff options
context:
space:
mode:
authorMarkus Armbruster <armbru@redhat.com>2013-02-06 21:27:15 +0100
committerAnthony Liguori <aliguori@us.ibm.com>2013-02-06 16:35:17 -0600
commit3ab651fc819178cf6a518af5860cc49f42cff455 (patch)
treeff7e205ecb9e4ac0dc68fbf1c19d8b99e7c7ea54 /qapi-schema.json
parent82e59a676c01b3df3b53998d428d0a64a55f2439 (diff)
qmp: Clean up design of memchar-read
The data returned has a well-defined size, which makes the size returned along with it redundant at best. Drop it. Signed-off-by: Markus Armbruster <armbru@redhat.com> Reviewed-by: Eric Blake <eblake@redhat.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'qapi-schema.json')
-rw-r--r--qapi-schema.json18
1 files changed, 2 insertions, 16 deletions
diff --git a/qapi-schema.json b/qapi-schema.json
index 9e2cbbd1ae..d8fa1c376a 100644
--- a/qapi-schema.json
+++ b/qapi-schema.json
@@ -361,20 +361,6 @@
'*format': 'DataFormat'} }
##
-# @MemCharRead
-#
-# Result of QMP command memchar-read.
-#
-# @data: The data read from memchar as string.
-#
-# @count: The numbers of bytes read from.
-#
-# Since: 1.4
-##
-{ 'type': 'MemCharRead',
- 'data': { 'data': 'str', 'count': 'int' } }
-
-##
# @memchar-read:
#
# Provide read interface for memchardev. Read from the char
@@ -387,14 +373,14 @@
# @format: #optional the format of the data want to read from
# memchardev, by default is 'utf8'.
#
-# Returns: @MemCharRead
+# Returns: data read from the device
# If @device is not a valid memchr device, DeviceNotFound
#
# Since: 1.4
##
{ 'command': 'memchar-read',
'data': {'device': 'str', 'size': 'int', '*format': 'DataFormat'},
- 'returns': 'MemCharRead' }
+ 'returns': 'str' }
##
# @CommandInfo: