| 
									
										
										
										
											2011-07-19 12:59:51 +01:00
										 |  |  | /* Slow paths of read/write spinlocks. */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <linux/linkage.h> | 
					
						
							|  |  |  | #include <asm/alternative-asm.h> | 
					
						
							|  |  |  | #include <asm/frame.h> | 
					
						
							|  |  |  | #include <asm/rwlock.h> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifdef CONFIG_X86_32 | 
					
						
							|  |  |  | # define __lock_ptr eax | 
					
						
							|  |  |  | #else | 
					
						
							|  |  |  | # define __lock_ptr rdi | 
					
						
							|  |  |  | #endif | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ENTRY(__write_lock_failed) | 
					
						
							|  |  |  | 	CFI_STARTPROC | 
					
						
							|  |  |  | 	FRAME | 
					
						
							|  |  |  | 0:	LOCK_PREFIX | 
					
						
							| 
									
										
										
										
											2011-07-19 13:00:45 +01:00
										 |  |  | 	WRITE_LOCK_ADD($RW_LOCK_BIAS) (%__lock_ptr) | 
					
						
							| 
									
										
										
										
											2011-07-19 12:59:51 +01:00
										 |  |  | 1:	rep; nop
 | 
					
						
							| 
									
										
										
										
											2011-07-19 13:00:45 +01:00
										 |  |  | 	cmpl	$WRITE_LOCK_CMP, (%__lock_ptr) | 
					
						
							| 
									
										
										
										
											2011-07-19 12:59:51 +01:00
										 |  |  | 	jne	1b | 
					
						
							|  |  |  | 	LOCK_PREFIX | 
					
						
							| 
									
										
										
										
											2011-07-19 13:00:45 +01:00
										 |  |  | 	WRITE_LOCK_SUB($RW_LOCK_BIAS) (%__lock_ptr) | 
					
						
							| 
									
										
										
										
											2011-07-19 12:59:51 +01:00
										 |  |  | 	jnz	0b | 
					
						
							|  |  |  | 	ENDFRAME | 
					
						
							|  |  |  | 	ret | 
					
						
							|  |  |  | 	CFI_ENDPROC | 
					
						
							|  |  |  | END(__write_lock_failed) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ENTRY(__read_lock_failed) | 
					
						
							|  |  |  | 	CFI_STARTPROC | 
					
						
							|  |  |  | 	FRAME | 
					
						
							|  |  |  | 0:	LOCK_PREFIX | 
					
						
							| 
									
										
										
										
											2011-07-19 13:00:45 +01:00
										 |  |  | 	READ_LOCK_SIZE(inc) (%__lock_ptr) | 
					
						
							| 
									
										
										
										
											2011-07-19 12:59:51 +01:00
										 |  |  | 1:	rep; nop
 | 
					
						
							| 
									
										
										
										
											2011-07-19 13:00:45 +01:00
										 |  |  | 	READ_LOCK_SIZE(cmp) $1, (%__lock_ptr) | 
					
						
							| 
									
										
										
										
											2011-07-19 12:59:51 +01:00
										 |  |  | 	js	1b | 
					
						
							|  |  |  | 	LOCK_PREFIX | 
					
						
							| 
									
										
										
										
											2011-07-19 13:00:45 +01:00
										 |  |  | 	READ_LOCK_SIZE(dec) (%__lock_ptr) | 
					
						
							| 
									
										
										
										
											2011-07-19 12:59:51 +01:00
										 |  |  | 	js	0b | 
					
						
							|  |  |  | 	ENDFRAME | 
					
						
							|  |  |  | 	ret | 
					
						
							|  |  |  | 	CFI_ENDPROC | 
					
						
							|  |  |  | END(__read_lock_failed) |