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

TOMOYO Linux Cross Reference
Linux/arch/mips/boot/ecoff.h

Version: ~ [ linux-6.11-rc3 ] ~ [ linux-6.10.4 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.45 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.104 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.164 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.223 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.281 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.319 ] ~ [ 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/mips/boot/ecoff.h (Version linux-6.11-rc3) and /arch/alpha/boot/ecoff.h (Version linux-5.18.19)


  1 /* SPDX-License-Identifier: GPL-2.0 */              1 
  2 /*                                                
  3  * Some ECOFF definitions.                        
  4  */                                               
  5                                                   
  6 #include <stdint.h>                               
  7                                                   
  8 typedef struct filehdr {                          
  9         uint16_t        f_magic;        /* mag    
 10         uint16_t        f_nscns;        /* num    
 11         int32_t         f_timdat;       /* tim    
 12         int32_t         f_symptr;       /* fil    
 13         int32_t         f_nsyms;        /* siz    
 14         uint16_t        f_opthdr;       /* siz    
 15         uint16_t        f_flags;        /* fla    
 16 } FILHDR;                                         
 17 #define FILHSZ  sizeof(FILHDR)                    
 18                                                   
 19 #define MIPSEBMAGIC     0x160                     
 20 #define MIPSELMAGIC     0x162                     
 21                                                   
 22 typedef struct scnhdr {                           
 23         char            s_name[8];      /* sec    
 24         int32_t         s_paddr;        /* phy    
 25         int32_t         s_vaddr;        /* vir    
 26         int32_t         s_size;         /* sec    
 27         int32_t         s_scnptr;       /* fil    
 28         int32_t         s_relptr;       /* fil    
 29         int32_t         s_lnnoptr;      /* fil    
 30         uint16_t        s_nreloc;       /* num    
 31         uint16_t        s_nlnno;        /* num    
 32         int32_t         s_flags;        /* fla    
 33 } SCNHDR;                                         
 34 #define SCNHSZ          sizeof(SCNHDR)            
 35 #define SCNROUND        ((int32_t)16)             
 36                                                   
 37 typedef struct aouthdr {                          
 38         int16_t magic;          /* see above      
 39         int16_t vstamp;         /* version sta    
 40         int32_t tsize;          /* text size i    
 41         int32_t dsize;          /* initialized    
 42         int32_t bsize;          /* uninitializ    
 43         int32_t entry;          /* entry pt.      
 44         int32_t text_start;     /* base of tex    
 45         int32_t data_start;     /* base of dat    
 46         int32_t bss_start;      /* base of bss    
 47         int32_t gprmask;        /* general pur    
 48         int32_t cprmask[4];     /* co-processo    
 49         int32_t gp_value;       /* the gp valu    
 50 } AOUTHDR;                                        
 51 #define AOUTHSZ sizeof(AOUTHDR)                   
 52                                                   
 53 #define OMAGIC          0407                      
 54 #define NMAGIC          0410                      
 55 #define ZMAGIC          0413                      
 56 #define SMAGIC          0411                      
 57 #define LIBMAGIC        0443                      
 58                                                   
 59 #define N_TXTOFF(f, a) \                          
 60  ((a).magic == ZMAGIC || (a).magic == LIBMAGIC    
 61   ((a).vstamp < 23 ? \                            
 62    ((FILHSZ + AOUTHSZ + (f).f_nscns * SCNHSZ +    
 63    ((FILHSZ + AOUTHSZ + (f).f_nscns * SCNHSZ +    
 64 #define N_DATOFF(f, a) \                          
 65   N_TXTOFF(f, a) + (a).tsize;                     
 66                                                   

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