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

TOMOYO Linux Cross Reference
Linux/arch/x86/xen/spinlock.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/x86/xen/spinlock.c (Version linux-6.12-rc7) and /arch/ppc/xen/spinlock.c (Version linux-4.13.16)


  1 // SPDX-License-Identifier: GPL-2.0                 1 
  2 /*                                                
  3  * Split spinlock implementation out into its     
  4  * compiled in a FTRACE-compatible way.           
  5  */                                               
  6 #include <linux/kernel.h>                         
  7 #include <linux/spinlock.h>                       
  8 #include <linux/slab.h>                           
  9 #include <linux/atomic.h>                         
 10                                                   
 11 #include <asm/paravirt.h>                         
 12 #include <asm/qspinlock.h>                        
 13                                                   
 14 #include <xen/events.h>                           
 15                                                   
 16 #include "xen-ops.h"                              
 17                                                   
 18 static DEFINE_PER_CPU(int, lock_kicker_irq) =     
 19 static DEFINE_PER_CPU(char *, irq_name);          
 20 static DEFINE_PER_CPU(atomic_t, xen_qlock_wait    
 21                                                   
 22 static void xen_qlock_kick(int cpu)               
 23 {                                                 
 24         int irq = per_cpu(lock_kicker_irq, cpu    
 25                                                   
 26         /* Don't kick if the target's kicker i    
 27         if (irq == -1)                            
 28                 return;                           
 29                                                   
 30         xen_send_IPI_one(cpu, XEN_SPIN_UNLOCK_    
 31 }                                                 
 32                                                   
 33 /*                                                
 34  * Halt the current CPU & release it back to t    
 35  */                                               
 36 static void xen_qlock_wait(u8 *byte, u8 val)      
 37 {                                                 
 38         int irq = __this_cpu_read(lock_kicker_    
 39         atomic_t *nest_cnt = this_cpu_ptr(&xen    
 40                                                   
 41         /* If kicker interrupts not initialize    
 42         if (irq == -1 || in_nmi())                
 43                 return;                           
 44                                                   
 45         /* Detect reentry. */                     
 46         atomic_inc(nest_cnt);                     
 47                                                   
 48         /* If irq pending already and no neste    
 49         if (atomic_read(nest_cnt) == 1 && xen_    
 50                 xen_clear_irq_pending(irq);       
 51         } else if (READ_ONCE(*byte) == val) {     
 52                 /* Block until irq becomes pen    
 53                 xen_poll_irq(irq);                
 54         }                                         
 55                                                   
 56         atomic_dec(nest_cnt);                     
 57 }                                                 
 58                                                   
 59 static irqreturn_t dummy_handler(int irq, void    
 60 {                                                 
 61         BUG();                                    
 62         return IRQ_HANDLED;                       
 63 }                                                 
 64                                                   
 65 void xen_init_lock_cpu(int cpu)                   
 66 {                                                 
 67         int irq;                                  
 68         char *name;                               
 69                                                   
 70         if (nopvspin)                             
 71                 return;                           
 72                                                   
 73         WARN(per_cpu(lock_kicker_irq, cpu) >=     
 74              cpu, per_cpu(lock_kicker_irq, cpu    
 75                                                   
 76         name = kasprintf(GFP_KERNEL, "spinlock    
 77         per_cpu(irq_name, cpu) = name;            
 78         irq = bind_ipi_to_irqhandler(XEN_SPIN_    
 79                                      cpu,         
 80                                      dummy_han    
 81                                      IRQF_PERC    
 82                                      name,        
 83                                      NULL);       
 84                                                   
 85         if (irq >= 0) {                           
 86                 disable_irq(irq); /* make sure    
 87                 per_cpu(lock_kicker_irq, cpu)     
 88         }                                         
 89                                                   
 90         printk("cpu %d spinlock event irq %d\n    
 91 }                                                 
 92                                                   
 93 void xen_uninit_lock_cpu(int cpu)                 
 94 {                                                 
 95         int irq;                                  
 96                                                   
 97         if (nopvspin)                             
 98                 return;                           
 99                                                   
100         kfree(per_cpu(irq_name, cpu));            
101         per_cpu(irq_name, cpu) = NULL;            
102         /*                                        
103          * When booting the kernel with 'mitig    
104          * CPUs are not activated, and lock_ki    
105          */                                       
106         irq = per_cpu(lock_kicker_irq, cpu);      
107         if (irq == -1)                            
108                 return;                           
109                                                   
110         unbind_from_irqhandler(irq, NULL);        
111         per_cpu(lock_kicker_irq, cpu) = -1;       
112 }                                                 
113                                                   
114 PV_CALLEE_SAVE_REGS_THUNK(xen_vcpu_stolen);       
115                                                   
116 /*                                                
117  * Our init of PV spinlocks is split in two in    
118  * using paravirt patching and jump labels pat    
119  * all of this before SMP code is invoked.        
120  *                                                
121  * The paravirt patching needs to be done _bef    
122  * is started, otherwise we would not patch th    
123  */                                               
124 void __init xen_init_spinlocks(void)              
125 {                                                 
126         /*  Don't need to use pvqspinlock code    
127         if (num_possible_cpus() == 1)             
128                 nopvspin = true;                  
129                                                   
130         if (nopvspin) {                           
131                 printk(KERN_DEBUG "xen: PV spi    
132                 static_branch_disable(&virt_sp    
133                 return;                           
134         }                                         
135         printk(KERN_DEBUG "xen: PV spinlocks e    
136                                                   
137         __pv_init_lock_hash();                    
138         pv_ops.lock.queued_spin_lock_slowpath     
139         pv_ops.lock.queued_spin_unlock =          
140                 PV_CALLEE_SAVE(__pv_queued_spi    
141         pv_ops.lock.wait = xen_qlock_wait;        
142         pv_ops.lock.kick = xen_qlock_kick;        
143         pv_ops.lock.vcpu_is_preempted = PV_CAL    
144 }                                                 
145                                                   

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