]> www.infradead.org Git - users/jedix/linux-maple.git/commitdiff
regulator: core: use kfree_const() to free space conditionally
authorWang ShaoBo <bobo.shaobowang@huawei.com>
Wed, 23 Nov 2022 03:46:16 +0000 (11:46 +0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 31 Dec 2022 12:32:14 +0000 (13:32 +0100)
[ Upstream commit dc8d006d15b623c1d80b90b45d6dcb6e890dad09 ]

Use kfree_const() to free supply_name conditionally in create_regulator()
as supply_name may be allocated from kmalloc() or directly from .rodata
section.

Fixes: 87fe29b61f95 ("regulator: push allocations in create_regulator() outside of lock")
Signed-off-by: Wang ShaoBo <bobo.shaobowang@huawei.com>
Link: https://lore.kernel.org/r/20221123034616.3609537-1-bobo.shaobowang@huawei.com
Signed-off-by: Mark Brown <broonie@kernel.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
drivers/regulator/core.c

index bc4bba899aeae577ffe3100305ae5d70f09859f0..78b6469e74d529eede397126d8fc54bc9b6ec97f 100644 (file)
@@ -1813,7 +1813,7 @@ static struct regulator *create_regulator(struct regulator_dev *rdev,
 
        regulator = kzalloc(sizeof(*regulator), GFP_KERNEL);
        if (regulator == NULL) {
-               kfree(supply_name);
+               kfree_const(supply_name);
                return NULL;
        }