summaryrefslogtreecommitdiff
path: root/Documentation
diff options
context:
space:
mode:
authorSasikantha babu <sasikanth.v19@gmail.com>2012-03-21 14:40:54 (GMT)
committerThomas Gleixner <tglx@linutronix.de>2012-03-30 13:43:33 (GMT)
commitaa2bf9bc6414b6972b9e51903c1ce7b1f057aee2 (patch)
tree71bde0e8c10be9e425a5bba631a0fe033ba2245f /Documentation
parentf52b69f86e27903d6896ed5fa7cd280fec8de532 (diff)
downloadlinux-fsl-qoriq-aa2bf9bc6414b6972b9e51903c1ce7b1f057aee2.tar.xz
itimer: Schedule silent NULL pointer fixup in setitimer() for removal
setitimer() should return -EFAULT if called with an invalid pointer for value. The current code excludes a NULL pointer from this rule and silently uses it to stop the timer. This violates the spec. Warn about user space apps which rely on that feature and schedule it for removal. [ tglx: Massaged changelog, warn message and Doc entry ] Signed-off-by: Sasikantha babu <sasikanth.v19@gmail.com> Link: http://lkml.kernel.org/r/1332340854-26053-1-git-send-email-sasikanth.v19@gmail.com Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'Documentation')
-rw-r--r--Documentation/feature-removal-schedule.txt8
1 files changed, 8 insertions, 0 deletions
diff --git a/Documentation/feature-removal-schedule.txt b/Documentation/feature-removal-schedule.txt
index 0cad480..32fae81 100644
--- a/Documentation/feature-removal-schedule.txt
+++ b/Documentation/feature-removal-schedule.txt
@@ -529,3 +529,11 @@ When: 3.5
Why: The old kmap_atomic() with two arguments is deprecated, we only
keep it for backward compatibility for few cycles and then drop it.
Who: Cong Wang <amwang@redhat.com>
+
+----------------------------
+
+What: setitimer accepts user NULL pointer (value)
+When: 3.6
+Why: setitimer is not returning -EFAULT if user pointer is NULL. This
+ violates the spec.
+Who: Sasikantha Babu <sasikanth.v19@gmail.com>