summaryrefslogtreecommitdiffstats
path: root/drivers/rtc/interface.c
diff options
context:
space:
mode:
authorThomas Gleixner2011-07-27 01:08:19 +0200
committerLinus Torvalds2011-07-27 01:49:42 +0200
commit431e2bcc371016824f419baa745f82388258f3ee (patch)
tree11ed612c73773e5e61160efa6ff5f0c3efe5c936 /drivers/rtc/interface.c
parentrtc: handle errors correctly in rtc_irq_set_state() (diff)
downloadkernel-qcow2-linux-431e2bcc371016824f419baa745f82388258f3ee.tar.gz
kernel-qcow2-linux-431e2bcc371016824f419baa745f82388258f3ee.tar.xz
kernel-qcow2-linux-431e2bcc371016824f419baa745f82388258f3ee.zip
rtc: limit frequency
Due to the hrtimer self rearming mode a user can DoS the machine simply because it's starved by hrtimer events. The RTC hrtimer is self rearming. We really need to limit the frequency to something sensible. Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Cc: John Stultz <john.stultz@linaro.org> Cc: Ingo Molnar <mingo@elte.hu> Cc: Ben Greear <greearb@candelatech.com> Cc: <stable@kernel.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/rtc/interface.c')
-rw-r--r--drivers/rtc/interface.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/rtc/interface.c b/drivers/rtc/interface.c
index b6bf57f25cc9..601b053bc0e5 100644
--- a/drivers/rtc/interface.c
+++ b/drivers/rtc/interface.c
@@ -688,7 +688,7 @@ int rtc_irq_set_freq(struct rtc_device *rtc, struct rtc_task *task, int freq)
int err = 0;
unsigned long flags;
- if (freq <= 0)
+ if (freq <= 0 || freq > 5000)
return -EINVAL;
spin_lock_irqsave(&rtc->irq_task_lock, flags);