mirror of
https://github.com/torvalds/linux.git
synced 2024-12-04 10:01:41 +00:00
selftests, x86, protection_keys: fix uninitialized variable warning
'orig_pkru' might have been uninitialized here. Fix it. Signed-off-by: Dave Hansen <dave.hansen@linux.intel.com> Signed-off-by: Shuah Khan <shuahkh@osg.samsung.com>
This commit is contained in:
parent
0a7d2cd740
commit
16846c2d96
@ -462,7 +462,7 @@ void pkey_disable_set(int pkey, int flags)
|
||||
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);
|
||||
|
Loading…
Reference in New Issue
Block a user