[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <81279dfd-0586-4f12-a3f7-1a4397646d43@web.de>
Date: Mon, 31 Mar 2025 17:46:19 +0200
From: Markus Elfring <Markus.Elfring@....de>
To: Henry Martin <bsdhenrymartin@...il.com>, linux-aspeed@...ts.ozlabs.org,
linux-arm-kernel@...ts.infradead.org
Cc: LKML <linux-kernel@...r.kernel.org>,
Andrew Jeffery <andrew@...econstruct.com.au>, Arnd Bergmann <arnd@...db.de>,
Gabriel Somlo <gsomlo@...il.com>, Herve Codina <herve.codina@...tlin.com>,
Joel Stanley <joel@....id.au>,
Uwe Kleine-König <u.kleine-koenig@...libre.com>
Subject: Re: [PATCH v2] drivers/misc: Add NULL check in
aspeed_lpc_enable_snoop
> devm_kasprintf() returns NULL if memory allocation fails. Currently,
…
call? failed?
An other subsystem specification might be more desirable.
https://web.git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git/log/drivers/soc/aspeed/aspeed-lpc-snoop.c?h=next-20250331
…
> +++ b/drivers/soc/aspeed/aspeed-lpc-snoop.c
> @@ -200,6 +200,8 @@ static int aspeed_lpc_enable_snoop(struct aspeed_lpc_snoop *lpc_snoop,
> lpc_snoop->chan[channel].miscdev.minor = MISC_DYNAMIC_MINOR;
> lpc_snoop->chan[channel].miscdev.name =
> devm_kasprintf(dev, GFP_KERNEL, "%s%d", DEVICE_NAME, channel);
> + if (!lpc_snoop->chan[channel].miscdev.name)
> + return -ENOMEM;
…
Can a blank line be preferred after such a statement?
* May the array access be simplified another bit here?
* How do you think about to store a pointer to a corresponding data structure member
in an additional local variable?
Regards,
Markus
Powered by blists - more mailing lists