diff options
| author | Prasanna Kumar Kalever | 2016-11-02 17:50:37 +0100 |
|---|---|---|
| committer | Jeff Cody | 2016-12-05 22:30:21 +0100 |
| commit | 7103d9165b78dd827e05d87f1edf1a5ec0847ebe (patch) | |
| tree | 142d7649dee0670eb33261b4f5c4c2c95f0c4cc1 /qapi/block-core.json | |
| parent | block/gluster: fix QMP to match debug option (diff) | |
| download | qemu-7103d9165b78dd827e05d87f1edf1a5ec0847ebe.tar.gz qemu-7103d9165b78dd827e05d87f1edf1a5ec0847ebe.tar.xz qemu-7103d9165b78dd827e05d87f1edf1a5ec0847ebe.zip | |
block/nfs: fix QMP to match debug option
The QMP definition of BlockdevOptionsNfs:
{ 'struct': 'BlockdevOptionsNfs',
'data': { 'server': 'NFSServer',
'path': 'str',
'*user': 'int',
'*group': 'int',
'*tcp-syn-count': 'int',
'*readahead-size': 'int',
'*page-cache-size': 'int',
'*debug-level': 'int' } }
To make this consistent with other block protocols like gluster, lets
change s/debug-level/debug/
Suggested-by: Eric Blake <eblake@redhat.com>
Signed-off-by: Prasanna Kumar Kalever <prasanna.kalever@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Signed-off-by: Jeff Cody <jcody@redhat.com>
Diffstat (limited to 'qapi/block-core.json')
| -rw-r--r-- | qapi/block-core.json | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/qapi/block-core.json b/qapi/block-core.json index 03b19f1c44..f22ed2aa49 100644 --- a/qapi/block-core.json +++ b/qapi/block-core.json @@ -2292,7 +2292,7 @@ # @page-cache-size: #optional set the pagecache size in bytes (defaults # to libnfs default) # -# @debug-level: #optional set the NFS debug level (max 2) (defaults +# @debug: #optional set the NFS debug level (max 2) (defaults # to libnfs default) # # Since 2.8 @@ -2305,7 +2305,7 @@ '*tcp-syn-count': 'int', '*readahead-size': 'int', '*page-cache-size': 'int', - '*debug-level': 'int' } } + '*debug': 'int' } } ## # @BlockdevOptionsCurl |
