]> git.karo-electronics.de Git - karo-tx-linux.git/commit
ARM: mm: use pteval_t to represent page protection values
authorWill Deacon <will.deacon@arm.com>
Tue, 18 Sep 2012 18:18:35 +0000 (19:18 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 11 Jan 2013 17:18:54 +0000 (09:18 -0800)
commit3f6c363d7bf291a026e4c3d2abe1d0767b0468e1
treec90a5b0b90ec2ecb1e8565b6f204ab04797b3f33
parent7a13eba369913bfd2f363b722d2831db5c3669df
ARM: mm: use pteval_t to represent page protection values

commit 864aa04cd02979c2c755cb28b5f4fe56039171c0 upstream.

When updating the page protection map after calculating the user_pgprot
value, the base protection map is temporarily stored in an unsigned long
type, causing truncation of the protection bits when LPAE is enabled.
This effectively means that calls to mprotect() will corrupt the upper
page attributes, clearing the XN bit unconditionally.

This patch uses pteval_t to store the intermediate protection values,
preserving the upper bits for 64-bit descriptors.

Acked-by: Nicolas Pitre <nico@linaro.org>
Acked-by: Catalin Marinas <catalin.marinas@arm.com>
Signed-off-by: Will Deacon <will.deacon@arm.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
arch/arm/mm/mmu.c