Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1572797 > unrolled thread

[PATCH 3/4] selftests, x86, protection_keys: fix uninitialized variable warning

Started byDave Hansen <dave.hansen@linux.intel.com>
First post2017-02-03 00:30 +0100
Last post2017-02-03 00:30 +0100
Articles 1 — 1 participant

Back to article view | Back to linux.kernel

This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by below is the oldest one visible, not the original post.


Contents

  [PATCH 3/4] selftests, x86, protection_keys: fix uninitialized variable warning Dave Hansen <dave.hansen@linux.intel.com> - 2017-02-03 00:30 +0100

#1572797 — [PATCH 3/4] selftests, x86, protection_keys: fix uninitialized variable warning

FromDave Hansen <dave.hansen@linux.intel.com>
Date2017-02-03 00:30 +0100
Subject[PATCH 3/4] selftests, x86, protection_keys: fix uninitialized variable warning
Message-ID<t6yZc-261-17@gated-at.bofh.it>
From: Dave Hansen <dave.hansen@linux.intel.com>

'orig_pkru' might have been uninitialized here.  Fix it.

Signed-off-by: Dave Hansen <dave.hansen@linux.intel.com>
---

 b/tools/testing/selftests/x86/protection_keys.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff -puN tools/testing/selftests/x86/protection_keys.c~pkeys-selftests-cleanrup-4-10-ish tools/testing/selftests/x86/protection_keys.c
--- a/tools/testing/selftests/x86/protection_keys.c~pkeys-selftests-cleanrup-4-10-ish	2017-02-02 15:27:13.758149477 -0800
+++ b/tools/testing/selftests/x86/protection_keys.c	2017-02-02 15:27:13.762149656 -0800
@@ -462,7 +462,7 @@ void pkey_disable_set(int pkey, int flag
 	unsigned long syscall_flags = 0;
 	int ret;
 	int pkey_rights;
-	u32 orig_pkru;
+	u32 orig_pkru = rdpkru();
 
 	dprintf1("START->%s(%d, 0x%x)\n", __func__,
 		pkey, flags);
_

[toc] | [standalone]


Back to top | Article view | linux.kernel


csiph-web