mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-03 07:43:54 -06:00
error: Move ERRP_GUARD() to the beginning of the function
Since the commit05e385d2a9
("error: Move ERRP_GUARD() to the beginning of the function"), there are new codes that don't put ERRP_GUARD() at the beginning of the functions. As stated in the commit05e385d2a9
: "include/qapi/error.h advises to put ERRP_GUARD() right at the beginning of the function, because only then can it guard the whole function.", so clean up the few spots disregarding the advice. Inspired-by: Markus Armbruster <armbru@redhat.com> Signed-off-by: Zhao Liu <zhao1.liu@intel.com> Reviewed-by: Markus Armbruster <armbru@redhat.com> Message-ID: <20240312060337.3240965-1-zhao1.liu@linux.intel.com> Signed-off-by: Thomas Huth <thuth@redhat.com>
This commit is contained in:
parent
95e9053a34
commit
46ff64a826
6 changed files with 9 additions and 10 deletions
|
@ -283,10 +283,10 @@ static bool request_ufd_features(int ufd, uint64_t features)
|
|||
static bool ufd_check_and_apply(int ufd, MigrationIncomingState *mis,
|
||||
Error **errp)
|
||||
{
|
||||
ERRP_GUARD();
|
||||
uint64_t asked_features = 0;
|
||||
static uint64_t supported_features;
|
||||
|
||||
ERRP_GUARD();
|
||||
/*
|
||||
* it's not possible to
|
||||
* request UFFD_API twice per one fd
|
||||
|
@ -371,6 +371,7 @@ static int test_ramblock_postcopiable(RAMBlock *rb, Error **errp)
|
|||
*/
|
||||
bool postcopy_ram_supported_by_host(MigrationIncomingState *mis, Error **errp)
|
||||
{
|
||||
ERRP_GUARD();
|
||||
long pagesize = qemu_real_host_page_size();
|
||||
int ufd = -1;
|
||||
bool ret = false; /* Error unless we change it */
|
||||
|
@ -380,7 +381,6 @@ bool postcopy_ram_supported_by_host(MigrationIncomingState *mis, Error **errp)
|
|||
uint64_t feature_mask;
|
||||
RAMBlock *block;
|
||||
|
||||
ERRP_GUARD();
|
||||
if (qemu_target_page_size() > pagesize) {
|
||||
error_setg(errp, "Target page size bigger than host page size");
|
||||
goto out;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue