mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-05 16:53:55 -06:00
qapi: Make parameter 'file' optional for BlockdevCreateOptionsLUKS
To support detached LUKS header creation, make the existing 'file' field in BlockdevCreateOptionsLUKS optional. Signed-off-by: Hyman Huang <yong.huang@smartx.com> Reviewed-by: Daniel P. Berrangé <berrange@redhat.com> Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
This commit is contained in:
parent
9ad5c4e7ee
commit
433957bb7f
2 changed files with 17 additions and 9 deletions
|
@ -4955,7 +4955,8 @@
|
|||
#
|
||||
# Driver specific image creation options for LUKS.
|
||||
#
|
||||
# @file: Node to create the image format on
|
||||
# @file: Node to create the image format on, mandatory except when
|
||||
# 'preallocation' is not requested
|
||||
#
|
||||
# @size: Size of the virtual disk in bytes
|
||||
#
|
||||
|
@ -4966,7 +4967,7 @@
|
|||
##
|
||||
{ 'struct': 'BlockdevCreateOptionsLUKS',
|
||||
'base': 'QCryptoBlockCreateOptionsLUKS',
|
||||
'data': { 'file': 'BlockdevRef',
|
||||
'data': { '*file': 'BlockdevRef',
|
||||
'size': 'size',
|
||||
'*preallocation': 'PreallocMode' } }
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue