]> git.baikalelectronics.ru Git - kernel.git/commit
cpufreq: Fix kobject memleak
authorViresh Kumar <viresh.kumar@linaro.org>
Tue, 30 Apr 2019 06:05:52 +0000 (11:35 +0530)
committerRafael J. Wysocki <rafael.j.wysocki@intel.com>
Tue, 30 Apr 2019 08:54:23 +0000 (10:54 +0200)
commitc5d4cb28734497a18c3191e14d509d1f2b69364d
treeaeeab4c5f504e0ad0df8f2d79c526f3b01eeb611
parenta28242d910acc845b00cf715011c39751371e801
cpufreq: Fix kobject memleak

Currently the error return path from kobject_init_and_add() is not
followed by a call to kobject_put() - which means we are leaking the
kobject.

Fix it by adding a call to kobject_put() in the error path of
kobject_init_and_add().

Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org>
Reviewed-by: Tobin C. Harding <tobin@kernel.org>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
drivers/cpufreq/cpufreq.c
drivers/cpufreq/cpufreq_governor.c