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

TOMOYO Linux Cross Reference
Linux/arch/arm64/lib/copy_from_user.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/arm64/lib/copy_from_user.S (Version linux-6.12-rc7) and /arch/i386/lib/copy_from_user.S (Version linux-4.4.302)


  1 /* SPDX-License-Identifier: GPL-2.0-only */       
  2 /*                                                
  3  * Copyright (C) 2012 ARM Ltd.                    
  4  */                                               
  5                                                   
  6 #include <linux/linkage.h>                        
  7                                                   
  8 #include <asm/asm-uaccess.h>                      
  9 #include <asm/assembler.h>                        
 10 #include <asm/cache.h>                            
 11                                                   
 12 /*                                                
 13  * Copy from user space to a kernel buffer (al    
 14  *                                                
 15  * Parameters:                                    
 16  *      x0 - to                                   
 17  *      x1 - from                                 
 18  *      x2 - n                                    
 19  * Returns:                                       
 20  *      x0 - bytes not copied                     
 21  */                                               
 22                                                   
 23         .macro ldrb1 reg, ptr, val                
 24         user_ldst 9998f, ldtrb, \reg, \ptr, \v    
 25         .endm                                     
 26                                                   
 27         .macro strb1 reg, ptr, val                
 28         strb \reg, [\ptr], \val                   
 29         .endm                                     
 30                                                   
 31         .macro ldrh1 reg, ptr, val                
 32         user_ldst 9997f, ldtrh, \reg, \ptr, \v    
 33         .endm                                     
 34                                                   
 35         .macro strh1 reg, ptr, val                
 36         strh \reg, [\ptr], \val                   
 37         .endm                                     
 38                                                   
 39         .macro ldr1 reg, ptr, val                 
 40         user_ldst 9997f, ldtr, \reg, \ptr, \va    
 41         .endm                                     
 42                                                   
 43         .macro str1 reg, ptr, val                 
 44         str \reg, [\ptr], \val                    
 45         .endm                                     
 46                                                   
 47         .macro ldp1 reg1, reg2, ptr, val          
 48         user_ldp 9997f, \reg1, \reg2, \ptr, \v    
 49         .endm                                     
 50                                                   
 51         .macro stp1 reg1, reg2, ptr, val          
 52         stp \reg1, \reg2, [\ptr], \val            
 53         .endm                                     
 54                                                   
 55 end     .req    x5                                
 56 srcin   .req    x15                               
 57 SYM_FUNC_START(__arch_copy_from_user)             
 58         add     end, x0, x2                       
 59         mov     srcin, x1                         
 60 #include "copy_template.S"                        
 61         mov     x0, #0                            
 62         ret                                       
 63                                                   
 64         // Exception fixups                       
 65 9997:   cmp     dst, dstin                        
 66         b.ne    9998f                             
 67         // Before being absolutely sure we cou    
 68 USER(9998f, ldtrb tmp1w, [srcin])                 
 69         strb    tmp1w, [dst], #1                  
 70 9998:   sub     x0, end, dst                      
 71         ret                                       
 72 SYM_FUNC_END(__arch_copy_from_user)               
 73 EXPORT_SYMBOL(__arch_copy_from_user)              
                                                      

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