OSDN Git Service

PM / sleep: fix device reference leak in test_suspend
authorJohan Hovold <johan@kernel.org>
Tue, 1 Nov 2016 10:49:56 +0000 (11:49 +0100)
committerRafael J. Wysocki <rafael.j.wysocki@intel.com>
Wed, 2 Nov 2016 04:10:04 +0000 (05:10 +0100)
Make sure to drop the reference taken by class_find_device() after
opening the RTC device.

Fixes: 77437fd4e61f (pm: boot time suspend selftest)
Signed-off-by: Johan Hovold <johan@kernel.org>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
kernel/power/suspend_test.c

index 084452e..bdff5ed 100644 (file)
@@ -203,8 +203,10 @@ static int __init test_suspend(void)
 
        /* RTCs have initialized by now too ... can we use one? */
        dev = class_find_device(rtc_class, NULL, NULL, has_wakealarm);
-       if (dev)
+       if (dev) {
                rtc = rtc_class_open(dev_name(dev));
+               put_device(dev);
+       }
        if (!rtc) {
                printk(warn_no_rtc);
                return 0;