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

TOMOYO Linux Cross Reference
Linux/arch/s390/kernel/jump_label.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/s390/kernel/jump_label.c (Architecture mips) and /arch/ppc/kernel/jump_label.c (Architecture ppc)


  1 // SPDX-License-Identifier: GPL-2.0                 1 
  2 /*                                                
  3  * Jump label s390 support                        
  4  *                                                
  5  * Copyright IBM Corp. 2011                       
  6  * Author(s): Jan Glauber <jang@linux.vnet.ibm    
  7  */                                               
  8 #include <linux/uaccess.h>                        
  9 #include <linux/jump_label.h>                     
 10 #include <linux/module.h>                         
 11 #include <asm/text-patching.h>                    
 12 #include <asm/ipl.h>                              
 13                                                   
 14 struct insn {                                     
 15         u16 opcode;                               
 16         s32 offset;                               
 17 } __packed;                                       
 18                                                   
 19 static void jump_label_make_nop(struct jump_en    
 20 {                                                 
 21         /* brcl 0,offset */                       
 22         insn->opcode = 0xc004;                    
 23         insn->offset = (jump_entry_target(entr    
 24 }                                                 
 25                                                   
 26 static void jump_label_make_branch(struct jump    
 27 {                                                 
 28         /* brcl 15,offset */                      
 29         insn->opcode = 0xc0f4;                    
 30         insn->offset = (jump_entry_target(entr    
 31 }                                                 
 32                                                   
 33 static void jump_label_bug(struct jump_entry *    
 34                            struct insn *new)      
 35 {                                                 
 36         unsigned char *ipc = (unsigned char *)    
 37         unsigned char *ipe = (unsigned char *)    
 38         unsigned char *ipn = (unsigned char *)    
 39                                                   
 40         pr_emerg("Jump label code mismatch at     
 41         pr_emerg("Found:    %6ph\n", ipc);        
 42         pr_emerg("Expected: %6ph\n", ipe);        
 43         pr_emerg("New:      %6ph\n", ipn);        
 44         panic("Corrupted kernel text");           
 45 }                                                 
 46                                                   
 47 static void jump_label_transform(struct jump_e    
 48                                  enum jump_lab    
 49 {                                                 
 50         void *code = (void *)jump_entry_code(e    
 51         struct insn old, new;                     
 52                                                   
 53         if (type == JUMP_LABEL_JMP) {             
 54                 jump_label_make_nop(entry, &ol    
 55                 jump_label_make_branch(entry,     
 56         } else {                                  
 57                 jump_label_make_branch(entry,     
 58                 jump_label_make_nop(entry, &ne    
 59         }                                         
 60         if (memcmp(code, &old, sizeof(old)))      
 61                 jump_label_bug(entry, &old, &n    
 62         s390_kernel_write(code, &new, sizeof(n    
 63 }                                                 
 64                                                   
 65 void arch_jump_label_transform(struct jump_ent    
 66                                enum jump_label    
 67 {                                                 
 68         jump_label_transform(entry, type);        
 69         text_poke_sync();                         
 70 }                                                 
 71                                                   
 72 bool arch_jump_label_transform_queue(struct ju    
 73                                      enum jump    
 74 {                                                 
 75         jump_label_transform(entry, type);        
 76         return true;                              
 77 }                                                 
 78                                                   
 79 void arch_jump_label_transform_apply(void)        
 80 {                                                 
 81         text_poke_sync();                         
 82 }                                                 
 83                                                   

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