forked from mirrors/linux
		
	x86/uaccess: Fix up the fixup
New tooling got confused about this: arch/x86/lib/memcpy_64.o: warning: objtool: .fixup+0x7: return with UACCESS enabled While the code isn't wrong, it is tedious (if at all possible) to figure out what function a particular chunk of .fixup belongs to. This then confuses the objtool uaccess validation. Instead of returning directly from the .fixup, jump back into the right function. Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org> Cc: Borislav Petkov <bp@alien8.de> Cc: Josh Poimboeuf <jpoimboe@redhat.com> Cc: Linus Torvalds <torvalds@linux-foundation.org> Cc: Peter Zijlstra <peterz@infradead.org> Cc: Thomas Gleixner <tglx@linutronix.de> Signed-off-by: Ingo Molnar <mingo@kernel.org>
This commit is contained in:
		
							parent
							
								
									3693ca8115
								
							
						
					
					
						commit
						b69656fa7e
					
				
					 1 changed files with 2 additions and 1 deletions
				
			
		|  | @ -257,6 +257,7 @@ ENTRY(__memcpy_mcsafe) | ||||||
| 	/* Copy successful. Return zero */ | 	/* Copy successful. Return zero */ | ||||||
| .L_done_memcpy_trap: | .L_done_memcpy_trap: | ||||||
| 	xorl %eax, %eax | 	xorl %eax, %eax | ||||||
|  | .L_done: | ||||||
| 	ret | 	ret | ||||||
| ENDPROC(__memcpy_mcsafe) | ENDPROC(__memcpy_mcsafe) | ||||||
| EXPORT_SYMBOL_GPL(__memcpy_mcsafe) | EXPORT_SYMBOL_GPL(__memcpy_mcsafe) | ||||||
|  | @ -273,7 +274,7 @@ EXPORT_SYMBOL_GPL(__memcpy_mcsafe) | ||||||
| 	addl	%edx, %ecx | 	addl	%edx, %ecx | ||||||
| .E_trailing_bytes: | .E_trailing_bytes: | ||||||
| 	mov	%ecx, %eax | 	mov	%ecx, %eax | ||||||
| 	ret | 	jmp	.L_done | ||||||
| 
 | 
 | ||||||
| 	/* | 	/* | ||||||
| 	 * For write fault handling, given the destination is unaligned, | 	 * For write fault handling, given the destination is unaligned, | ||||||
|  |  | ||||||
		Loading…
	
		Reference in a new issue
	
	 Peter Zijlstra
						Peter Zijlstra