~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/arch/x86/mm/pgtable_32.c

Version: ~ [ linux-6.12-rc7 ] ~ [ linux-6.11.7 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.60 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.116 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.171 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.229 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.285 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.323 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.9 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

Diff markup

Differences between /arch/x86/mm/pgtable_32.c (Architecture sparc) and /arch/mips/mm/pgtable_32.c (Architecture mips)


  1 // SPDX-License-Identifier: GPL-2.0                 1 
  2 #include <linux/sched.h>                          
  3 #include <linux/kernel.h>                         
  4 #include <linux/errno.h>                          
  5 #include <linux/mm.h>                             
  6 #include <linux/nmi.h>                            
  7 #include <linux/swap.h>                           
  8 #include <linux/smp.h>                            
  9 #include <linux/highmem.h>                        
 10 #include <linux/pagemap.h>                        
 11 #include <linux/spinlock.h>                       
 12                                                   
 13 #include <asm/cpu_entry_area.h>                   
 14 #include <asm/fixmap.h>                           
 15 #include <asm/e820/api.h>                         
 16 #include <asm/tlb.h>                              
 17 #include <asm/tlbflush.h>                         
 18 #include <asm/io.h>                               
 19 #include <linux/vmalloc.h>                        
 20                                                   
 21 unsigned int __VMALLOC_RESERVE = 128 << 20;       
 22                                                   
 23 /*                                                
 24  * Associate a virtual page frame with a given    
 25  * and protection flags for that frame.           
 26  */                                               
 27 void set_pte_vaddr(unsigned long vaddr, pte_t     
 28 {                                                 
 29         pgd_t *pgd;                               
 30         p4d_t *p4d;                               
 31         pud_t *pud;                               
 32         pmd_t *pmd;                               
 33         pte_t *pte;                               
 34                                                   
 35         pgd = swapper_pg_dir + pgd_index(vaddr    
 36         if (pgd_none(*pgd)) {                     
 37                 BUG();                            
 38                 return;                           
 39         }                                         
 40         p4d = p4d_offset(pgd, vaddr);             
 41         if (p4d_none(*p4d)) {                     
 42                 BUG();                            
 43                 return;                           
 44         }                                         
 45         pud = pud_offset(p4d, vaddr);             
 46         if (pud_none(*pud)) {                     
 47                 BUG();                            
 48                 return;                           
 49         }                                         
 50         pmd = pmd_offset(pud, vaddr);             
 51         if (pmd_none(*pmd)) {                     
 52                 BUG();                            
 53                 return;                           
 54         }                                         
 55         pte = pte_offset_kernel(pmd, vaddr);      
 56         if (!pte_none(pteval))                    
 57                 set_pte_at(&init_mm, vaddr, pt    
 58         else                                      
 59                 pte_clear(&init_mm, vaddr, pte    
 60                                                   
 61         /*                                        
 62          * It's enough to flush this one mappi    
 63          * (PGE mappings get flushed as well)     
 64          */                                       
 65         flush_tlb_one_kernel(vaddr);              
 66 }                                                 
 67                                                   
 68 unsigned long __FIXADDR_TOP = 0xfffff000;         
 69 EXPORT_SYMBOL(__FIXADDR_TOP);                     
 70                                                   
 71 /*                                                
 72  * vmalloc=size forces the vmalloc area to be     
 73  * bytes. This can be used to increase (or dec    
 74  * vmalloc area - the default is 128m.            
 75  */                                               
 76 static int __init parse_vmalloc(char *arg)        
 77 {                                                 
 78         if (!arg)                                 
 79                 return -EINVAL;                   
 80                                                   
 81         /* Add VMALLOC_OFFSET to the parsed va    
 82         __VMALLOC_RESERVE = memparse(arg, &arg    
 83         return 0;                                 
 84 }                                                 
 85 early_param("vmalloc", parse_vmalloc);            
 86                                                   
 87 /*                                                
 88  * reservetop=size reserves a hole at the top     
 89  * a hypervisor can load into later.  Needed f    
 90  * so relocating the fixmap can be done before    
 91  */                                               
 92 static int __init parse_reservetop(char *arg)     
 93 {                                                 
 94         unsigned long address;                    
 95                                                   
 96         if (!arg)                                 
 97                 return -EINVAL;                   
 98                                                   
 99         address = memparse(arg, &arg);            
100         reserve_top_address(address);             
101         early_ioremap_init();                     
102         return 0;                                 
103 }                                                 
104 early_param("reservetop", parse_reservetop);      
105                                                   

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php