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

TOMOYO Linux Cross Reference
Linux/arch/x86/mm/physaddr.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.12 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

Diff markup

Differences between /arch/x86/mm/physaddr.c (Architecture mips) and /arch/i386/mm/physaddr.c (Architecture i386)


  1 // SPDX-License-Identifier: GPL-2.0                 1 
  2 #include <linux/memblock.h>                       
  3 #include <linux/mmdebug.h>                        
  4 #include <linux/export.h>                         
  5 #include <linux/mm.h>                             
  6                                                   
  7 #include <asm/page.h>                             
  8 #include <linux/vmalloc.h>                        
  9                                                   
 10 #include "physaddr.h"                             
 11                                                   
 12 #ifdef CONFIG_X86_64                              
 13                                                   
 14 #ifdef CONFIG_DEBUG_VIRTUAL                       
 15 unsigned long __phys_addr(unsigned long x)        
 16 {                                                 
 17         unsigned long y = x - __START_KERNEL_m    
 18                                                   
 19         /* use the carry flag to determine if     
 20         if (unlikely(x > y)) {                    
 21                 x = y + phys_base;                
 22                                                   
 23                 VIRTUAL_BUG_ON(y >= KERNEL_IMA    
 24         } else {                                  
 25                 x = y + (__START_KERNEL_map -     
 26                                                   
 27                 /* carry flag will be set if s    
 28                 VIRTUAL_BUG_ON((x > y) || !phy    
 29         }                                         
 30                                                   
 31         return x;                                 
 32 }                                                 
 33 EXPORT_SYMBOL(__phys_addr);                       
 34                                                   
 35 unsigned long __phys_addr_symbol(unsigned long    
 36 {                                                 
 37         unsigned long y = x - __START_KERNEL_m    
 38                                                   
 39         /* only check upper bounds since lower    
 40         VIRTUAL_BUG_ON(y >= KERNEL_IMAGE_SIZE)    
 41                                                   
 42         return y + phys_base;                     
 43 }                                                 
 44 EXPORT_SYMBOL(__phys_addr_symbol);                
 45 #endif                                            
 46                                                   
 47 bool __virt_addr_valid(unsigned long x)           
 48 {                                                 
 49         unsigned long y = x - __START_KERNEL_m    
 50                                                   
 51         /* use the carry flag to determine if     
 52         if (unlikely(x > y)) {                    
 53                 x = y + phys_base;                
 54                                                   
 55                 if (y >= KERNEL_IMAGE_SIZE)       
 56                         return false;             
 57         } else {                                  
 58                 x = y + (__START_KERNEL_map -     
 59                                                   
 60                 /* carry flag will be set if s    
 61                 if ((x > y) || !phys_addr_vali    
 62                         return false;             
 63         }                                         
 64                                                   
 65         return pfn_valid(x >> PAGE_SHIFT);        
 66 }                                                 
 67 EXPORT_SYMBOL(__virt_addr_valid);                 
 68                                                   
 69 #else                                             
 70                                                   
 71 #ifdef CONFIG_DEBUG_VIRTUAL                       
 72 unsigned long __phys_addr(unsigned long x)        
 73 {                                                 
 74         unsigned long phys_addr = x - PAGE_OFF    
 75         /* VMALLOC_* aren't constants  */         
 76         VIRTUAL_BUG_ON(x < PAGE_OFFSET);          
 77         VIRTUAL_BUG_ON(__vmalloc_start_set &&     
 78         /* max_low_pfn is set early, but not _    
 79         if (max_low_pfn) {                        
 80                 VIRTUAL_BUG_ON((phys_addr >> P    
 81                 BUG_ON(slow_virt_to_phys((void    
 82         }                                         
 83         return phys_addr;                         
 84 }                                                 
 85 EXPORT_SYMBOL(__phys_addr);                       
 86 #endif                                            
 87                                                   
 88 bool __virt_addr_valid(unsigned long x)           
 89 {                                                 
 90         if (x < PAGE_OFFSET)                      
 91                 return false;                     
 92         if (__vmalloc_start_set && is_vmalloc_    
 93                 return false;                     
 94         if (x >= FIXADDR_START)                   
 95                 return false;                     
 96         return pfn_valid((x - PAGE_OFFSET) >>     
 97 }                                                 
 98 EXPORT_SYMBOL(__virt_addr_valid);                 
 99                                                   
100 #endif  /* CONFIG_X86_64 */                       
101                                                   

~ [ 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