mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-02 23:33:54 -06:00
crypto: move 'opaque' parameter to (nearly) the end of parameter list
Previous commit moved 'opaque' to be the 2nd parameter in the list:
commit 375092332e
Author: Fam Zheng <famz@redhat.com>
Date: Fri Apr 21 20:27:02 2017 +0800
crypto: Make errp the last parameter of functions
Move opaque to 2nd instead of the 2nd to last, so that compilers help
check with the conversion.
this puts it back to the 2nd to last position.
Reviewed-by: Eric Blake <eblake@redhat.com>
Reviewed-by: Fam Zheng <famz@redhat.com>
Signed-off-by: Daniel P. Berrange <berrange@redhat.com>
This commit is contained in:
parent
899833cd65
commit
e4a3507e86
4 changed files with 17 additions and 14 deletions
|
@ -473,9 +473,9 @@ qcrypto_block_luks_load_key(QCryptoBlock *block,
|
|||
* then encrypted.
|
||||
*/
|
||||
rv = readfunc(block,
|
||||
opaque,
|
||||
slot->key_offset * QCRYPTO_BLOCK_LUKS_SECTOR_SIZE,
|
||||
splitkey, splitkeylen,
|
||||
opaque,
|
||||
errp);
|
||||
if (rv < 0) {
|
||||
goto cleanup;
|
||||
|
@ -676,9 +676,10 @@ qcrypto_block_luks_open(QCryptoBlock *block,
|
|||
|
||||
/* Read the entire LUKS header, minus the key material from
|
||||
* the underlying device */
|
||||
rv = readfunc(block, opaque, 0,
|
||||
rv = readfunc(block, 0,
|
||||
(uint8_t *)&luks->header,
|
||||
sizeof(luks->header),
|
||||
opaque,
|
||||
errp);
|
||||
if (rv < 0) {
|
||||
ret = rv;
|
||||
|
@ -1245,7 +1246,7 @@ qcrypto_block_luks_create(QCryptoBlock *block,
|
|||
QCRYPTO_BLOCK_LUKS_SECTOR_SIZE;
|
||||
|
||||
/* Reserve header space to match payload offset */
|
||||
initfunc(block, opaque, block->payload_offset, &local_err);
|
||||
initfunc(block, block->payload_offset, opaque, &local_err);
|
||||
if (local_err) {
|
||||
error_propagate(errp, local_err);
|
||||
goto error;
|
||||
|
@ -1267,9 +1268,10 @@ qcrypto_block_luks_create(QCryptoBlock *block,
|
|||
|
||||
|
||||
/* Write out the partition header and key slot headers */
|
||||
writefunc(block, opaque, 0,
|
||||
writefunc(block, 0,
|
||||
(const uint8_t *)&luks->header,
|
||||
sizeof(luks->header),
|
||||
opaque,
|
||||
&local_err);
|
||||
|
||||
/* Delay checking local_err until we've byte-swapped */
|
||||
|
@ -1295,10 +1297,11 @@ qcrypto_block_luks_create(QCryptoBlock *block,
|
|||
|
||||
/* Write out the master key material, starting at the
|
||||
* sector immediately following the partition header. */
|
||||
if (writefunc(block, opaque,
|
||||
if (writefunc(block,
|
||||
luks->header.key_slots[0].key_offset *
|
||||
QCRYPTO_BLOCK_LUKS_SECTOR_SIZE,
|
||||
splitkey, splitkeylen,
|
||||
opaque,
|
||||
errp) != splitkeylen) {
|
||||
goto error;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue