From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752107AbdBBX2r (ORCPT ); Thu, 2 Feb 2017 18:28:47 -0500 Received: from mga11.intel.com ([192.55.52.93]:60445 "EHLO mga11.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751622AbdBBX2p (ORCPT ); Thu, 2 Feb 2017 18:28:45 -0500 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.33,326,1477983600"; d="scan'208";a="61255471" Subject: [PATCH 1/4] selftests, x86, protection_keys: fix unused variable compile warnings To: linux-kernel@vger.kernel.org Cc: x86@kernel.org, Dave Hansen , shuahkh@osg.samsung.com From: Dave Hansen Date: Thu, 02 Feb 2017 15:28:44 -0800 References: <20170202232842.C3C30DB2@viggo.jf.intel.com> In-Reply-To: <20170202232842.C3C30DB2@viggo.jf.intel.com> Message-Id: <20170202232844.BFD31FAD@viggo.jf.intel.com> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Shuah Khan Fix unused variable compile warnings in protection_keys.c Signed-off-by: Shuah Khan Signed-off-by: Dave Hansen --- b/tools/testing/selftests/x86/protection_keys.c | 5 ----- 1 file changed, 5 deletions(-) diff -puN tools/testing/selftests/x86/protection_keys.c~selftests-x86-protection-keys-fix-unused-variable-compile-warnings tools/testing/selftests/x86/protection_keys.c --- a/tools/testing/selftests/x86/protection_keys.c~selftests-x86-protection-keys-fix-unused-variable-compile-warnings 2017-02-02 15:27:12.898110827 -0800 +++ b/tools/testing/selftests/x86/protection_keys.c 2017-02-02 15:27:12.901110962 -0800 @@ -812,8 +812,6 @@ void setup_hugetlbfs(void) { int err; int fd; - int validated_nr_pages; - int i; char buf[] = "123"; if (geteuid() != 0) { @@ -1133,7 +1131,6 @@ void test_pkey_syscalls_on_non_allocated void test_pkey_syscalls_bad_args(int *ptr, u16 pkey) { int err; - int bad_flag = (PKEY_DISABLE_ACCESS | PKEY_DISABLE_WRITE) + 1; int bad_pkey = NR_PKEYS+99; /* not enforced when pkey_get() is not a syscall @@ -1149,8 +1146,6 @@ void test_pkey_syscalls_bad_args(int *pt /* Assumes that all pkeys other than 'pkey' are unallocated */ void test_pkey_alloc_exhaust(int *ptr, u16 pkey) { - unsigned long flags; - unsigned long init_val; int err; int allocated_pkeys[NR_PKEYS] = {0}; int nr_allocated_pkeys = 0; _