diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2013-02-18 09:52:08 +0100 |
---|---|---|
committer | Ingo Molnar <mingo@kernel.org> | 2013-02-19 08:43:38 +0100 |
commit | fe2b05f7ca9f906be61dced5489f63b8b4d7c770 (patch) | |
tree | c1eb86342c2055087c015b580a63d4c1c21cf742 /kernel/futex_compat.c | |
parent | 5042afe7fe32390e79910ecd0a1f0563d4bca38c (diff) | |
download | linux-fe2b05f7ca9f906be61dced5489f63b8b4d7c770.tar.gz linux-fe2b05f7ca9f906be61dced5489f63b8b4d7c770.tar.bz2 linux-fe2b05f7ca9f906be61dced5489f63b8b4d7c770.zip |
futex: Revert "futex: Mark get_robust_list as deprecated"
This reverts commit ec0c4274e33c0373e476b73e01995c53128f1257.
get_robust_list() is in use and a removal would break existing user
space. With the permission checks in place it's not longer a security
hole. Remove the deprecation warnings.
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Cc: Cyrill Gorcunov <gorcunov@openvz.org>
Cc: Richard Weinberger <richard@nod.at>
Cc: akpm@linux-foundation.org
Cc: paul.gortmaker@windriver.com
Cc: davej@redhat.com
Cc: keescook@chromium.org
Cc: stable@vger.kernel.org
Cc: ebiederm@xmission.com
Diffstat (limited to 'kernel/futex_compat.c')
-rw-r--r-- | kernel/futex_compat.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/kernel/futex_compat.c b/kernel/futex_compat.c index 83e368b005fc..a9642d528630 100644 --- a/kernel/futex_compat.c +++ b/kernel/futex_compat.c @@ -142,8 +142,6 @@ compat_sys_get_robust_list(int pid, compat_uptr_t __user *head_ptr, if (!futex_cmpxchg_enabled) return -ENOSYS; - WARN_ONCE(1, "deprecated: get_robust_list will be deleted in 2013.\n"); - rcu_read_lock(); ret = -ESRCH; |