diff options
| author | Olga Krishtal | 2015-12-04 07:42:04 +0100 |
|---|---|---|
| committer | Paolo Bonzini | 2015-12-17 17:33:47 +0100 |
| commit | 31e38a22a0c5a25646f966f001e1f5513d5a186d (patch) | |
| tree | c78d9100a49558ba081de7f087b759728d8684b2 /qapi-schema.json | |
| parent | kvm: x86: add support for KVM_CAP_SPLIT_IRQCHIP (diff) | |
| download | qemu-31e38a22a0c5a25646f966f001e1f5513d5a186d.tar.gz qemu-31e38a22a0c5a25646f966f001e1f5513d5a186d.tar.xz qemu-31e38a22a0c5a25646f966f001e1f5513d5a186d.zip | |
qemu-char: append opt to stop truncation of serial file
Our QA team wants to preserve serial output of the guest in between QEMU
runs to perform post-analysis.
By default this behavior is off (file is truncated each time QEMU is
started or device is plugged).
Signed-off-by: Olga Krishtal <okrishtal@virtuozzo.com>
Signed-off-by: Denis V. Lunev <den@openvz.org>
CC: Eric Blake <eblake@redhat.com>
CC: Markus Armbruster <armbru@redhat.com>
CC: Paolo Bonzini <pbonzini@redhat.com>
Message-Id: <1449211324-17856-1-git-send-email-den@openvz.org>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'qapi-schema.json')
| -rw-r--r-- | qapi-schema.json | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/qapi-schema.json b/qapi-schema.json index f014a80f72..516b14526b 100644 --- a/qapi-schema.json +++ b/qapi-schema.json @@ -3102,11 +3102,14 @@ # # @in: #optional The name of the input file # @out: The name of the output file +# @append: #optional Open the file in append mode (default false to +# truncate) (Since 2.6) # # Since: 1.4 ## { 'struct': 'ChardevFile', 'data': { '*in' : 'str', - 'out' : 'str' } } + 'out' : 'str', + '*append': 'bool' } } ## # @ChardevHostdev: |
