projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b45d59f
)
rtc: handle errors correctly in rtc_irq_set_state()
author
Thomas Gleixner
<
[email protected]
>
Tue, 26 Jul 2011 23:08:18 +0000
(16:08 -0700)
committer
Linus Torvalds
<
[email protected]
>
Tue, 26 Jul 2011 23:49:41 +0000
(16:49 -0700)
The code checks the correctness of the parameters, but unconditionally
arms/disarms the hrtimer.
The result is that a random task might arm/disarm rtc timer and surprise
the real owner by either generating events or by stopping them.
Signed-off-by: Thomas Gleixner <
[email protected]
>
Cc: John Stultz <
[email protected]
>
Cc: Ingo Molnar <
[email protected]
>
Cc: Ben Greear <
[email protected]
>
Cc: <
[email protected]
>
Signed-off-by: Andrew Morton <
[email protected]
>
Signed-off-by: Linus Torvalds <
[email protected]
>
drivers/rtc/interface.c
patch
|
blob
|
history
diff --git
a/drivers/rtc/interface.c
b/drivers/rtc/interface.c
index df68618f6dbb53f60f1f743f1425e2060e104854..b6bf57f25cc9e520ca31d642eea1616b9132f82b 100644
(file)
--- a/
drivers/rtc/interface.c
+++ b/
drivers/rtc/interface.c
@@
-656,6
+656,8
@@
int rtc_irq_set_state(struct rtc_device *rtc, struct rtc_task *task, int enabled
err = -EBUSY;
if (rtc->irq_task != task)
err = -EACCES;
+ if (err)
+ goto out;
if (enabled) {
ktime_t period = ktime_set(0, NSEC_PER_SEC/rtc->irq_freq);
@@
-664,6
+666,7
@@
int rtc_irq_set_state(struct rtc_device *rtc, struct rtc_task *task, int enabled
hrtimer_cancel(&rtc->pie_timer);
}
rtc->pie_enabled = enabled;
+out:
spin_unlock_irqrestore(&rtc->irq_task_lock, flags);
return err;