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

TOMOYO Linux Cross Reference
Linux/arch/arm/lib/putuser.S

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/arm/lib/putuser.S (Version linux-6.11-rc3) and /arch/alpha/lib/putuser.S (Version linux-5.6.19)


  1 /* SPDX-License-Identifier: GPL-2.0-only */       
  2 /*                                                
  3  *  linux/arch/arm/lib/putuser.S                  
  4  *                                                
  5  *  Copyright (C) 2001 Russell King               
  6  *                                                
  7  *  Idea from x86 version, (C) Copyright 1998     
  8  *                                                
  9  * These functions have a non-standard call in    
 10  * them more efficient, especially as they ret    
 11  * value in addition to the "real" return valu    
 12  *                                                
 13  * __put_user_X                                   
 14  *                                                
 15  * Inputs:      r0 contains the address           
 16  *              r1 contains the address limit,    
 17  *              r2, r3 contains the value         
 18  * Outputs:     r0 is the error code              
 19  *              lr corrupted                      
 20  *                                                
 21  * No other registers must be altered.  (see <    
 22  * for specific ASM register usage).              
 23  *                                                
 24  * Note that ADDR_LIMIT is either 0 or 0xc0000    
 25  * Note also that it is intended that __put_us    
 26  */                                               
 27 #include <linux/linkage.h>                        
 28 #include <asm/assembler.h>                        
 29 #include <asm/errno.h>                            
 30 #include <asm/domain.h>                           
 31                                                   
 32 ENTRY(__put_user_1)                               
 33         check_uaccess r0, 1, r1, ip, __put_use    
 34 1: TUSER(strb)  r2, [r0]                          
 35         mov     r0, #0                            
 36         ret     lr                                
 37 ENDPROC(__put_user_1)                             
 38                                                   
 39 ENTRY(__put_user_2)                               
 40         check_uaccess r0, 2, r1, ip, __put_use    
 41 #if __LINUX_ARM_ARCH__ >= 6                       
 42                                                   
 43 2: TUSER(strh)  r2, [r0]                          
 44                                                   
 45 #else                                             
 46                                                   
 47         mov     ip, r2, lsr #8                    
 48 #ifndef __ARMEB__                                 
 49 2: TUSER(strb)  r2, [r0], #1                      
 50 3: TUSER(strb)  ip, [r0]                          
 51 #else                                             
 52 2: TUSER(strb)  ip, [r0], #1                      
 53 3: TUSER(strb)  r2, [r0]                          
 54 #endif                                            
 55                                                   
 56 #endif /* __LINUX_ARM_ARCH__ >= 6 */              
 57         mov     r0, #0                            
 58         ret     lr                                
 59 ENDPROC(__put_user_2)                             
 60                                                   
 61 ENTRY(__put_user_4)                               
 62         check_uaccess r0, 4, r1, ip, __put_use    
 63 4: TUSER(str)   r2, [r0]                          
 64         mov     r0, #0                            
 65         ret     lr                                
 66 ENDPROC(__put_user_4)                             
 67                                                   
 68 ENTRY(__put_user_8)                               
 69         check_uaccess r0, 8, r1, ip, __put_use    
 70 #ifdef CONFIG_THUMB2_KERNEL                       
 71 5: TUSER(str)   r2, [r0]                          
 72 6: TUSER(str)   r3, [r0, #4]                      
 73 #else                                             
 74 5: TUSER(str)   r2, [r0], #4                      
 75 6: TUSER(str)   r3, [r0]                          
 76 #endif                                            
 77         mov     r0, #0                            
 78         ret     lr                                
 79 ENDPROC(__put_user_8)                             
 80                                                   
 81 __put_user_bad:                                   
 82         mov     r0, #-EFAULT                      
 83         ret     lr                                
 84 ENDPROC(__put_user_bad)                           
 85                                                   
 86 .pushsection __ex_table, "a"                      
 87         .long   1b, __put_user_bad                
 88         .long   2b, __put_user_bad                
 89 #if __LINUX_ARM_ARCH__ < 6                        
 90         .long   3b, __put_user_bad                
 91 #endif                                            
 92         .long   4b, __put_user_bad                
 93         .long   5b, __put_user_bad                
 94         .long   6b, __put_user_bad                
 95 .popsection                                       
                                                      

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