diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2015-01-11 12:44:10 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2015-01-11 12:44:10 -0800 |
commit | 0cbaed1d8c2493934b86b4ad99b2de9fcce008e8 (patch) | |
tree | 31d1fe752641900a8eaa608d6daae3babd01e609 /arch/arm/mm/init.c | |
parent | 505569d208e61ab14f4b87957be0970ab33eb319 (diff) | |
parent | 1e3479225acbb7ae048ac30fb7c6090fa7f0df02 (diff) | |
download | op-kernel-dev-0cbaed1d8c2493934b86b4ad99b2de9fcce008e8.zip op-kernel-dev-0cbaed1d8c2493934b86b4ad99b2de9fcce008e8.tar.gz |
Merge branch 'fixes' of git://ftp.arm.linux.org.uk/~rmk/linux-arm
Pull ARM fixes from Russell King:
"Three small fixes from over the Christmas period, and wiring up the
new execveat syscall for ARM"
* 'fixes' of git://ftp.arm.linux.org.uk/~rmk/linux-arm:
ARM: 8275/1: mm: fix PMD_SECT_RDONLY undeclared compile error
ARM: 8253/1: mm: use phys_addr_t type in map_lowmem() for kernel mem region
ARM: 8249/1: mm: dump: don't skip regions
ARM: wire up execveat syscall
Diffstat (limited to 'arch/arm/mm/init.c')
-rw-r--r-- | arch/arm/mm/init.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/mm/init.c b/arch/arm/mm/init.c index 98ad9c7..2495c8c 100644 --- a/arch/arm/mm/init.c +++ b/arch/arm/mm/init.c @@ -658,8 +658,8 @@ static struct section_perm ro_perms[] = { .start = (unsigned long)_stext, .end = (unsigned long)__init_begin, #ifdef CONFIG_ARM_LPAE - .mask = ~PMD_SECT_RDONLY, - .prot = PMD_SECT_RDONLY, + .mask = ~L_PMD_SECT_RDONLY, + .prot = L_PMD_SECT_RDONLY, #else .mask = ~(PMD_SECT_APX | PMD_SECT_AP_WRITE), .prot = PMD_SECT_APX | PMD_SECT_AP_WRITE, |