diff options
author | Markus Armbruster <armbru@redhat.com> | 2013-07-26 16:44:34 +0200 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2013-07-29 10:37:12 -0500 |
commit | 3a1da42eb35a67d0dbc899dd571ea386fa11c4dd (patch) | |
tree | 1508f285553bf5301f690e57ae25eaefc87c4e95 /qapi-schema.json | |
parent | c11ed9666d69abaf217c8800f299c519b487b7d3 (diff) |
qapi: Rename ChardevBackend member "memory" to "ringbuf"
Commit 1da48c6 called the new member "memory" after commit 3949e59
standardized "ringbuf". Rename for consistency.
However, member name "memory" is visible in QMP since 1.5. It's
undocumented just like the driver name. Keep it working anyway.
Cc: qemu-stable@nongnu.org
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Message-id: 1374849874-25531-4-git-send-email-armbru@redhat.com
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'qapi-schema.json')
-rw-r--r-- | qapi-schema.json | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/qapi-schema.json b/qapi-schema.json index a56de74e5a..a51f7d2d6e 100644 --- a/qapi-schema.json +++ b/qapi-schema.json @@ -3364,9 +3364,9 @@ ## # @ChardevRingbuf: # -# Configuration info for memory chardevs +# Configuration info for ring buffer chardevs. # -# @size: #optional Ringbuffer size, must be power of two, default is 65536 +# @size: #optional ring buffer size, must be power of two, default is 65536 # # Since: 1.5 ## @@ -3397,6 +3397,8 @@ 'spicevmc' : 'ChardevSpiceChannel', 'spiceport' : 'ChardevSpicePort', 'vc' : 'ChardevVC', + 'ringbuf': 'ChardevRingbuf', + # next one is just for compatibility 'memory' : 'ChardevRingbuf' } } ## |