[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1405041854-17902-1-git-send-email-hyogi.gim@lge.com>
Date: Fri, 11 Jul 2014 10:24:14 +0900
From: Hyogi Gim <hyogi.gim@....com>
To: John Stultz <john.stultz@...aro.org>,
KOSAKI Motohiro <kosaki.motohiro@...fujitsu.com>,
Alessandro Zummo <a.zummo@...ertech.it>
Cc: linux-kernel@...r.kernel.org, Hyogi Gim <hyogi.gim@....com>
Subject: [PATCH] alarmtimer: Add the verification code for rtc device error.
In alarmtimer_suspend(), the error after rtc_read_time() is not checked.
If rtc device fail to read rtc time, we cannot ensure the following process.
Furthermore, the return value of rtc_timer_start() needs to distinguish
-ETIME and other rtc device error. If the error is relevant to rtc device,
suspend is failed unintentionally. In this case, it just returns zero for
a stable suspend. Otherwise, in the worst case, suspend will fail continually.
So, this patch verifies the rtc device error in alarmtimer_suspend(). it
includes "rtc_err goto" statement instead of a direct "return 0" to clarify
the rtc device error.
Signed-off-by: Hyogi Gim <hyogi.gim@....com>
---
kernel/time/alarmtimer.c | 12 ++++++++++--
1 file changed, 10 insertions(+), 2 deletions(-)
diff --git a/kernel/time/alarmtimer.c b/kernel/time/alarmtimer.c
index 88c9c65..8cc43b8 100644
--- a/kernel/time/alarmtimer.c
+++ b/kernel/time/alarmtimer.c
@@ -261,15 +261,23 @@ static int alarmtimer_suspend(struct device *dev)
/* Setup an rtc timer to fire that far in the future */
rtc_timer_cancel(rtc, &rtctimer);
- rtc_read_time(rtc, &tm);
+ ret = rtc_read_time(rtc, &tm);
+ if (ret < 0)
+ goto rtc_err;
now = rtc_tm_to_ktime(tm);
now = ktime_add(now, min);
/* Set alarm, if in the past reject suspend briefly to handle */
ret = rtc_timer_start(rtc, &rtctimer, now, ktime_set(0, 0));
- if (ret < 0)
+ if (ret == -ETIME)
__pm_wakeup_event(ws, MSEC_PER_SEC);
+ else if (ret < 0)
+ goto rtc_err;
+
return ret;
+
+rtc_err:
+ return 0;
}
#else
static int alarmtimer_suspend(struct device *dev)
--
1.8.3.2
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists