Re: [PATCH] checkpatch: Add devres_alloc() to allocation functions
From: Joe Perches
Date: Tue Aug 11 2026 - 22:55:18 EST
On Wed, 2026-08-12 at 09:43 +0700, phucduc.bui@xxxxxxxxx wrote:
> Add devres_alloc() to $allocFunctions so checkpatch.pl can detect
> unnecessary out-of-memory messages following a failed allocation.
OK, are you also updating the 2 existing instances where
there is an OOM message?
-----------
drivers/thermal/thermal_hwmon.c: ptr = devres_alloc(devm_thermal_hwmon_release, sizeof(*ptr),
drivers/thermal/thermal_hwmon.c- GFP_KERNEL);
drivers/thermal/thermal_hwmon.c- if (!ptr) {
drivers/thermal/thermal_hwmon.c- dev_warn(dev, "Failed to allocate device resource data\n");
drivers/thermal/thermal_hwmon.c- return -ENOMEM;
drivers/thermal/thermal_hwmon.c- }
-----------
drivers/usb/phy/phy.c: ptr = devres_alloc(devm_usb_phy_release2, sizeof(*ptr), GFP_KERNEL);
drivers/usb/phy/phy.c- if (!ptr) {
drivers/usb/phy/phy.c- dev_dbg(dev, "failed to allocate memory for devres\n");
drivers/usb/phy/phy.c- goto err0;
drivers/usb/phy/phy.c- }
-----------
What about devres_alloc_node? (there aren't any OOM messages)
> diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl
[]
> @@ -644,7 +644,8 @@ our $allocFunctions = qr{(?x:
> kmemdup(?:_nul)?) |
> (?:\w+)?alloc_skb(?:_ip_align)? |
> # dev_alloc_skb/netdev_alloc_skb, et al
> - dma_alloc_coherent
> + dma_alloc_coherent |
> + devres_alloc
> )};
>
> our $signature_tags = qr{(?xi: