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

TOMOYO Linux Cross Reference
Linux/arch/um/include/asm/common.lds.S

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/um/include/asm/common.lds.S (Architecture ppc) and /arch/alpha/include/asm-alpha/common.lds.S (Architecture alpha)


  1 /* SPDX-License-Identifier: GPL-2.0 */            
  2 #include <asm-generic/vmlinux.lds.h>              
  3                                                   
  4   .fini      : { *(.fini)    } =0x9090            
  5   _etext = .;                                     
  6   PROVIDE (etext = .);                            
  7                                                   
  8   . = ALIGN(4096);                                
  9   _sdata = .;                                     
 10   PROVIDE (sdata = .);                            
 11                                                   
 12   RO_DATA(4096)                                   
 13                                                   
 14   .unprotected : { *(.unprotected) }              
 15   . = ALIGN(4096);                                
 16   PROVIDE (_unprotected_end = .);                 
 17                                                   
 18   . = ALIGN(4096);                                
 19   EXCEPTION_TABLE(0)                              
 20                                                   
 21   BUG_TABLE                                       
 22                                                   
 23   .uml.setup.init : {                             
 24         __uml_setup_start = .;                    
 25         *(.uml.setup.init)                        
 26         __uml_setup_end = .;                      
 27   }                                               
 28                                                   
 29   .uml.help.init : {                              
 30         __uml_help_start = .;                     
 31         *(.uml.help.init)                         
 32         __uml_help_end = .;                       
 33   }                                               
 34                                                   
 35   .uml.postsetup.init : {                         
 36         __uml_postsetup_start = .;                
 37         *(.uml.postsetup.init)                    
 38         __uml_postsetup_end = .;                  
 39   }                                               
 40                                                   
 41   .init.setup : {                                 
 42         INIT_SETUP(0)                             
 43   }                                               
 44                                                   
 45   PERCPU_SECTION(32)                              
 46                                                   
 47   .initcall.init : {                              
 48         INIT_CALLS                                
 49   }                                               
 50                                                   
 51   .con_initcall.init : {                          
 52         CON_INITCALL                              
 53   }                                               
 54                                                   
 55   .exitcall : {                                   
 56         __exitcall_begin = .;                     
 57         *(.exitcall.exit)                         
 58         __exitcall_end = .;                       
 59   }                                               
 60                                                   
 61   .uml.exitcall : {                               
 62         __uml_exitcall_begin = .;                 
 63         *(.uml.exitcall.exit)                     
 64         __uml_exitcall_end = .;                   
 65   }                                               
 66                                                   
 67   . = ALIGN(4);                                   
 68   .altinstructions : {                            
 69         __alt_instructions = .;                   
 70         *(.altinstructions)                       
 71         __alt_instructions_end = .;               
 72   }                                               
 73   .altinstr_replacement : { *(.altinstr_replac    
 74   /* .exit.text is discard at runtime, not lin    
 75      from .altinstructions and .eh_frame */       
 76   .exit.text : { EXIT_TEXT }                      
 77   .exit.data : { *(.exit.data) }                  
 78                                                   
 79   .preinit_array : {                              
 80         __preinit_array_start = .;                
 81         *(.preinit_array)                         
 82         __preinit_array_end = .;                  
 83   }                                               
 84   .init_array : {                                 
 85         __init_array_start = .;                   
 86         *(.kasan_init)                            
 87         *(.init_array.*)                          
 88         *(.init_array)                            
 89         __init_array_end = .;                     
 90   }                                               
 91   .fini_array : {                                 
 92         __fini_array_start = .;                   
 93         *(.fini_array)                            
 94         __fini_array_end = .;                     
 95   }                                               
 96                                                   
 97    . = ALIGN(4096);                               
 98   .init.ramfs : {                                 
 99         INIT_RAM_FS                               
100   }                                               
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