From: Marc Zyngier <maz@kernel.org>
To: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Cc: Johan Hovold <johan+linaro@kernel.org>,
linux-kernel@vger.kernel.org,
Thomas Gleixner <tglx@linutronix.de>
Subject: Re: [PATCH v1 1/1] irqdomain: Refactor error path in __irq_domain_alloc_fwnode()
Date: Fri, 04 Aug 2023 18:33:07 +0100 [thread overview]
Message-ID: <84f2ea9ee0c08c8826c0f26c4a6291c9@kernel.org> (raw)
In-Reply-To: <20230804164932.40582-1-andriy.shevchenko@linux.intel.com>
On 2023-08-04 17:49, Andy Shevchenko wrote:
> First of all, there is no need to call kasprintf() if the previous
> allocation failed. Second, there is no need to call for kfree()
> when we know that its parameter is NULL. Refactor the code accordingly.
>
> Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
> ---
> kernel/irq/irqdomain.c | 6 +++---
> 1 file changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/kernel/irq/irqdomain.c b/kernel/irq/irqdomain.c
> index 0bdef4fe925b..d2bbba46c808 100644
> --- a/kernel/irq/irqdomain.c
> +++ b/kernel/irq/irqdomain.c
> @@ -81,6 +81,8 @@ struct fwnode_handle
> *__irq_domain_alloc_fwnode(unsigned int type, int id,
> char *n;
>
> fwid = kzalloc(sizeof(*fwid), GFP_KERNEL);
> + if (!fwid)
> + return NULL;
>
> switch (type) {
> case IRQCHIP_FWNODE_NAMED:
> @@ -93,10 +95,8 @@ struct fwnode_handle
> *__irq_domain_alloc_fwnode(unsigned int type, int id,
> n = kasprintf(GFP_KERNEL, "irqchip@%pa", pa);
> break;
> }
> -
> - if (!fwid || !n) {
> + if (!n) {
> kfree(fwid);
> - kfree(n);
> return NULL;
> }
What are you trying to fix?
We have a common error handling path, which makes it easy to
track the memory management. I don't think this sort of bike
shedding adds much to the maintainability of this code.
Now if you have spotted an actual bug, I'm all ears.
M.
--
Jazz is not dead. It just smells funny...
next prev parent reply other threads:[~2023-08-04 17:33 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-08-04 16:49 [PATCH v1 1/1] irqdomain: Refactor error path in __irq_domain_alloc_fwnode() Andy Shevchenko
2023-08-04 17:33 ` Marc Zyngier [this message]
2023-08-04 20:12 ` Andy Shevchenko
2023-08-04 22:24 ` Marc Zyngier
2023-08-07 15:06 ` Andy Shevchenko
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=84f2ea9ee0c08c8826c0f26c4a6291c9@kernel.org \
--to=maz@kernel.org \
--cc=andriy.shevchenko@linux.intel.com \
--cc=johan+linaro@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=tglx@linutronix.de \
/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.