[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [PATCH 01/16] error: Add error_vprepend() in comment of ERRP_GUARD()
From: |
Markus Armbruster |
Subject: |
Re: [PATCH 01/16] error: Add error_vprepend() in comment of ERRP_GUARD() rules |
Date: |
Thu, 29 Feb 2024 15:42:05 +0100 |
User-agent: |
Gnus/5.13 (Gnus v5.13) |
Zhao Liu <zhao1.liu@linux.intel.com> writes:
> From: Zhao Liu <zhao1.liu@intel.com>
>
> The error_vprepend() should use ERRP_GUARD() just as the documentation
> of ERRP_GUARD() says:
>
>> It must be used when the function dereferences @errp or passes
>> @errp to error_prepend(), error_vprepend(), or error_append_hint().
>
> Considering that error_vprepend() is also an API provided in error.h,
> it is necessary to add it to the description of the rules for using
> ERRP_GUARD().
>
> Signed-off-by: Zhao Liu <zhao1.liu@intel.com>
> ---
> include/qapi/error.h | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/include/qapi/error.h b/include/qapi/error.h
> index f21a231bb1a6..b1b389967f92 100644
> --- a/include/qapi/error.h
> +++ b/include/qapi/error.h
> @@ -207,7 +207,7 @@
> *
> * Without ERRP_GUARD(), use of the @errp parameter is restricted:
> * - It must not be dereferenced, because it may be null.
> - * - It should not be passed to error_prepend() or
> + * - It should not be passed to error_prepend(), error_vprepend() or
> * error_append_hint(), because that doesn't work with &error_fatal.
> * ERRP_GUARD() lifts these restrictions.
> *
Good catch!
I'd like a comma after error_vprepend().
Reviewed-by: Markus Armbruster <armbru@redhat.com>
- [PATCH 00/16 Part 1] Cleanup up to fix missing ERRP_GUARD() for error_prepend(), Zhao Liu, 2024/02/28
- [PATCH 01/16] error: Add error_vprepend() in comment of ERRP_GUARD() rules, Zhao Liu, 2024/02/28
- Re: [PATCH 01/16] error: Add error_vprepend() in comment of ERRP_GUARD() rules,
Markus Armbruster <=
- [PATCH 02/16] backends/iommufd: Fix missing ERRP_GUARD() for error_prepend(), Zhao Liu, 2024/02/28
- [PATCH 03/16] block: Fix missing ERRP_GUARD() for error_prepend(), Zhao Liu, 2024/02/28
- [PATCH 04/16] block/cbw: Fix missing ERRP_GUARD() for error_prepend(), Zhao Liu, 2024/02/28
- [PATCH 05/16] block/nbd: Fix missing ERRP_GUARD() for error_prepend(), Zhao Liu, 2024/02/28