aboutsummaryrefslogtreecommitdiffstats
path: root/tools/testing/selftests/x86/protection_keys.c
diff options
context:
space:
mode:
authorShuah Khan <shuahkh@osg.samsung.com>2017-01-05 14:11:00 -0700
committerShuah Khan <shuahkh@osg.samsung.com>2017-01-11 09:51:23 -0700
commit3e91293ffccafe30daa7310526bbfbc287e0c0fd (patch)
treee10f58efb10ff92c89256739da3cf836a6ce95e0 /tools/testing/selftests/x86/protection_keys.c
parentselftests: x86 protection_keys fix unused variable compile warnings (diff)
downloadlinux-dev-3e91293ffccafe30daa7310526bbfbc287e0c0fd.tar.xz
linux-dev-3e91293ffccafe30daa7310526bbfbc287e0c0fd.zip
selftests: x86 protection_keys remove dead code
Remove commented out calls to pkey_get(). Signed-off-by: Shuah Khan <shuahkh@osg.samsung.com>
Diffstat (limited to 'tools/testing/selftests/x86/protection_keys.c')
-rw-r--r--tools/testing/selftests/x86/protection_keys.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/tools/testing/selftests/x86/protection_keys.c b/tools/testing/selftests/x86/protection_keys.c
index 70402cd96265..46f53ec502f6 100644
--- a/tools/testing/selftests/x86/protection_keys.c
+++ b/tools/testing/selftests/x86/protection_keys.c
@@ -1114,11 +1114,6 @@ void test_pkey_syscalls_on_non_allocated_pkey(int *ptr, u16 pkey)
err = sys_pkey_free(i);
pkey_assert(err);
- /* not enforced when pkey_get() is not a syscall
- err = pkey_get(i, 0);
- pkey_assert(err < 0);
- */
-
err = sys_pkey_free(i);
pkey_assert(err);
@@ -1133,11 +1128,6 @@ void test_pkey_syscalls_bad_args(int *ptr, u16 pkey)
int err;
int bad_pkey = NR_PKEYS+99;
- /* not enforced when pkey_get() is not a syscall
- err = pkey_get(bad_pkey, bad_flag);
- pkey_assert(err < 0);
- */
-
/* pass a known-invalid pkey in: */
err = sys_mprotect_pkey(ptr, PAGE_SIZE, PROT_READ, bad_pkey);
pkey_assert(err);