mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-04 10:40:15 +02:00 
			
		
		
		
	ARM: 8275/1: mm: fix PMD_SECT_RDONLY undeclared compile error
In v3.19-rc3 tree when CONFIG_ARM_LPAE and CONFIG_DEBUG_RODATA are enabled image failed to compile with the following error: arch/arm/mm/init.c:661:14: error: ‘PMD_SECT_RDONLY’ undeclared here (not in a function) It seems that '80d6b0c ARM: mm: allow text and rodata sections to be read-only' and 'ded9477 ARM: 8109/1: mm: Modify pte_write and pmd_write logic for LPAE' commits crossed.80d6b0cuses PMD_SECT_RDONLY macro butded9477renames it and uses software bits L_PMD_SECT_RDONLY instead. Fix is to use L_PMD_SECT_RDONLY instead PMD_SECT_RDONLY asded9477does in another places. Signed-off-by: Victor Kamensky <victor.kamensky@linaro.org> Acked-by: Will Deacon <will.deacon@arm.com> Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
This commit is contained in:
		
							parent
							
								
									ac08468867
								
							
						
					
					
						commit
						1e3479225a
					
				
					 1 changed files with 2 additions and 2 deletions
				
			
		| 
						 | 
					@ -658,8 +658,8 @@ static struct section_perm ro_perms[] = {
 | 
				
			||||||
		.start  = (unsigned long)_stext,
 | 
							.start  = (unsigned long)_stext,
 | 
				
			||||||
		.end    = (unsigned long)__init_begin,
 | 
							.end    = (unsigned long)__init_begin,
 | 
				
			||||||
#ifdef CONFIG_ARM_LPAE
 | 
					#ifdef CONFIG_ARM_LPAE
 | 
				
			||||||
		.mask   = ~PMD_SECT_RDONLY,
 | 
							.mask   = ~L_PMD_SECT_RDONLY,
 | 
				
			||||||
		.prot   = PMD_SECT_RDONLY,
 | 
							.prot   = L_PMD_SECT_RDONLY,
 | 
				
			||||||
#else
 | 
					#else
 | 
				
			||||||
		.mask   = ~(PMD_SECT_APX | PMD_SECT_AP_WRITE),
 | 
							.mask   = ~(PMD_SECT_APX | PMD_SECT_AP_WRITE),
 | 
				
			||||||
		.prot   = PMD_SECT_APX | PMD_SECT_AP_WRITE,
 | 
							.prot   = PMD_SECT_APX | PMD_SECT_AP_WRITE,
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in a new issue