]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
watchdog: sp5100_tco: Fix a memory leak of EFCH MMIO resource
authorJean Delvare <jdelvare@suse.de>
Tue, 21 Jun 2022 13:28:40 +0000 (15:28 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 17 Aug 2022 12:42:10 +0000 (14:42 +0200)
[ Upstream commit c6d9c0798ed366a09a9e53d71edcd2266e34a6eb ]

Unlike release_mem_region(), a call to release_resource() does not
free the resource, so it has to be freed explicitly to avoid a memory
leak.

Signed-off-by: Jean Delvare <jdelvare@suse.de>
Fixes: 0578fff4aae5 ("Watchdog: sp5100_tco: Add initialization using EFCH MMIO")
Cc: Terry Bowman <terry.bowman@amd.com>
Cc: Wim Van Sebroeck <wim@linux-watchdog.org>
Cc: Guenter Roeck <linux@roeck-us.net>
Reviewed-by: Guenter Roeck <linux@roeck-us.net>
Link: https://lore.kernel.org/r/20220621152840.420a0f4c@endymion.delvare
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
Signed-off-by: Wim Van Sebroeck <wim@linux-watchdog.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
drivers/watchdog/sp5100_tco.c

index 86ffb58fbc8549448f2323a3c6ccf3e0a13294aa..ae54dd33e23362b249d2feb5136029d49b4f834f 100644 (file)
@@ -402,6 +402,7 @@ out:
                iounmap(addr);
 
        release_resource(res);
+       kfree(res);
 
        return ret;
 }