From: Zhao Liu <zhao1.liu@intel.com>
To: Zhenzhong Duan <zhenzhong.duan@intel.com>
Cc: qemu-devel@nongnu.org, pbonzini@redhat.com, berrange@redhat.com,
eduardo@habkost.net, chao.p.peng@intel.com
Subject: Re: [PATCH 2/2] qom/object_interfaces: Remove local_err in user_creatable_add_type
Date: Fri, 15 Mar 2024 16:30:47 +0800 [thread overview]
Message-ID: <ZfQHNxkzem2/cZbT@intel.com> (raw)
In-Reply-To: <20240229033739.1123076-3-zhenzhong.duan@intel.com>
On Thu, Feb 29, 2024 at 11:37:39AM +0800, Zhenzhong Duan wrote:
> Date: Thu, 29 Feb 2024 11:37:39 +0800
> From: Zhenzhong Duan <zhenzhong.duan@intel.com>
> Subject: [PATCH 2/2] qom/object_interfaces: Remove local_err in
> user_creatable_add_type
> X-Mailer: git-send-email 2.34.1
>
> In user_creatable_add_type, there is mixed usage of ERRP_GUARD and
> local_err. This makes error_abort not taking effect in those callee
> functions with local_err passed.
>
> Now that we already has ERRP_GUARD, remove local_err and use *errp
> instead.
>
> Signed-off-by: Zhenzhong Duan <zhenzhong.duan@intel.com>
> ---
> qom/object_interfaces.c | 12 +++++-------
> 1 file changed, 5 insertions(+), 7 deletions(-)
>
> diff --git a/qom/object_interfaces.c b/qom/object_interfaces.c
> index 255a7bf659..165cd433e7 100644
> --- a/qom/object_interfaces.c
> +++ b/qom/object_interfaces.c
> @@ -81,7 +81,6 @@ Object *user_creatable_add_type(const char *type, const char *id,
> ERRP_GUARD();
> Object *obj;
> ObjectClass *klass;
> - Error *local_err = NULL;
>
> if (id != NULL && !id_wellformed(id)) {
> error_setg(errp, QERR_INVALID_PARAMETER_VALUE, "id", "an identifier");
> @@ -109,20 +108,20 @@ Object *user_creatable_add_type(const char *type, const char *id,
>
> assert(qdict);
> obj = object_new(type);
> - object_set_properties_from_qdict(obj, qdict, v, &local_err);
> - if (local_err) {
> + object_set_properties_from_qdict(obj, qdict, v, errp);
It's better to make object_set_properties_from_qdict someting (e.g.,
boolean). Maybe an extra cleanup?
> + if (*errp) {
> goto out;
> }
>
> if (id != NULL) {
> object_property_try_add_child(object_get_objects_root(),
> - id, obj, &local_err);
> - if (local_err) {
> + id, obj, errp);
> + if (*errp) {
> goto out;
> }
> }
Here we could check whether the returned ObjectProperty* is NULL instaed
of dereferencing errp.
Thanks,
Zhao
next prev parent reply other threads:[~2024-03-15 8:17 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-02-29 3:37 [PATCH 0/2] Optimize user_creatable_add_type error path Zhenzhong Duan
2024-02-29 3:37 ` [PATCH 1/2] qom/object_interfaces: Remove unnecessary local_err check Zhenzhong Duan
2024-03-15 8:20 ` Zhao Liu
2024-03-15 9:27 ` Duan, Zhenzhong
2024-02-29 3:37 ` [PATCH 2/2] qom/object_interfaces: Remove local_err in user_creatable_add_type Zhenzhong Duan
2024-03-15 8:30 ` Zhao Liu [this message]
2024-03-15 9:29 ` Duan, Zhenzhong
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=ZfQHNxkzem2/cZbT@intel.com \
--to=zhao1.liu@intel.com \
--cc=berrange@redhat.com \
--cc=chao.p.peng@intel.com \
--cc=eduardo@habkost.net \
--cc=pbonzini@redhat.com \
--cc=qemu-devel@nongnu.org \
--cc=zhenzhong.duan@intel.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.