| 
									
										
										
										
											2008-07-23 13:28:58 -07:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Split spinlock implementation out into its own file, so it can be | 
					
						
							|  |  |  |  * compiled in a FTRACE-compatible way. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | #include <linux/spinlock.h>
 | 
					
						
							|  |  |  | #include <linux/module.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <asm/paravirt.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-10-17 16:09:57 +02:00
										 |  |  | static inline void | 
					
						
							| 
									
										
										
										
											2009-12-02 19:49:50 +01:00
										 |  |  | default_spin_lock_flags(arch_spinlock_t *lock, unsigned long flags) | 
					
						
							| 
									
										
										
										
											2008-08-19 13:19:36 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2009-12-02 20:01:25 +01:00
										 |  |  | 	arch_spin_lock(lock); | 
					
						
							| 
									
										
										
										
											2008-08-19 13:19:36 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-07-23 13:28:58 -07:00
										 |  |  | struct pv_lock_ops pv_lock_ops = { | 
					
						
							|  |  |  | #ifdef CONFIG_SMP
 | 
					
						
							|  |  |  | 	.spin_is_locked = __ticket_spin_is_locked, | 
					
						
							|  |  |  | 	.spin_is_contended = __ticket_spin_is_contended, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	.spin_lock = __ticket_spin_lock, | 
					
						
							| 
									
										
										
										
											2008-08-19 13:19:36 -07:00
										 |  |  | 	.spin_lock_flags = default_spin_lock_flags, | 
					
						
							| 
									
										
										
										
											2008-07-23 13:28:58 -07:00
										 |  |  | 	.spin_trylock = __ticket_spin_trylock, | 
					
						
							|  |  |  | 	.spin_unlock = __ticket_spin_unlock, | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | }; | 
					
						
							| 
									
										
										
										
											2008-08-20 11:31:07 -07:00
										 |  |  | EXPORT_SYMBOL(pv_lock_ops); | 
					
						
							| 
									
										
										
										
											2008-07-23 13:28:58 -07:00
										 |  |  | 
 |