Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge tag 'powerpc-5.8-5' of git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux

Pull powerpc fixes from Michael Ellerman:
"One fix for a regression in our pkey handling, which exhibits as
PROT_EXEC mappings taking continuous page faults.

Thanks to: Jan Stancek, Aneesh Kumar K.V"

* tag 'powerpc-5.8-5' of git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux:
powerpc/mm/pkeys: Make pkey access check work on execute_only_key

-3
-3
arch/powerpc/mm/book3s64/pkeys.c
··· 353 353 int pkey_shift; 354 354 u64 amr; 355 355 356 - if (!is_pkey_enabled(pkey)) 357 - return true; 358 - 359 356 pkey_shift = pkeyshift(pkey); 360 357 if (execute && !(read_iamr() & (IAMR_EX_BIT << pkey_shift))) 361 358 return true;