mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-05 00:33:55 -06:00
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>
This commit is contained in:
parent
1a417e46ae
commit
7103d9165b
2 changed files with 4 additions and 4 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue