From: Christophe Jaillet Date: Sun, 2 Oct 2016 07:04:16 +0000 (+0200) Subject: ptp: Fix resource leak in case of error X-Git-Tag: v4.9-rc1~127^2~10 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b9118b7221ebb12156d2b08d4d5647bc6076d6bb;p=platform%2Fkernel%2Flinux-exynos.git ptp: Fix resource leak in case of error A call to 'ida_simple_remove()' is missing in the error handling path. This as been spotted with the following coccinelle script which tries to detect missing 'ida_simple_remove()' call in error handling paths. /////////////// @@ expression x; identifier l; @@ * x = ida_simple_get(...); ... if (...) { ... } ... if (...) { ... goto l; } ... * l: ... when != ida_simple_remove(...); Signed-off-by: Christophe JAILLET Acked-by: Richard Cochran Signed-off-by: David S. Miller --- diff --git a/drivers/ptp/ptp_clock.c b/drivers/ptp/ptp_clock.c index 2e481b9..86280b7 100644 --- a/drivers/ptp/ptp_clock.c +++ b/drivers/ptp/ptp_clock.c @@ -263,6 +263,7 @@ no_sysfs: no_device: mutex_destroy(&ptp->tsevq_mux); mutex_destroy(&ptp->pincfg_mux); + ida_simple_remove(&ptp_clocks_map, index); no_slot: kfree(ptp); no_memory: