svn commit: r353958 - head/lib/libthr/arch/amd64/amd64

Conrad Meyer cem at FreeBSD.org
Wed Oct 23 18:27:31 UTC 2019


Author: cem
Date: Wed Oct 23 18:27:30 2019
New Revision: 353958
URL: https://svnweb.freebsd.org/changeset/base/353958

Log:
  libthr: Add missing END() directive for umtx_op_err (amd64)
  
  Like r353929, related to D22122.  No functional change.
  
  Reviewed by:	emaste, kib (earlier version both)

Modified:
  head/lib/libthr/arch/amd64/amd64/_umtx_op_err.S

Modified: head/lib/libthr/arch/amd64/amd64/_umtx_op_err.S
==============================================================================
--- head/lib/libthr/arch/amd64/amd64/_umtx_op_err.S	Wed Oct 23 18:00:22 2019	(r353957)
+++ head/lib/libthr/arch/amd64/amd64/_umtx_op_err.S	Wed Oct 23 18:27:30 2019	(r353958)
@@ -29,8 +29,11 @@
 #include <sys/syscall.h>
 #include <machine/asm.h>
 
-#define	RSYSCALL_ERR(x)	ENTRY(__CONCAT(x, _err));		\
-			mov __CONCAT($SYS_,x),%rax; KERNCALL; ret; 
+#define	RSYSCALL_ERR(x)	ENTRY(__CONCAT(x, _err)); \
+			mov __CONCAT($SYS_,x),%rax; \
+			KERNCALL; \
+			ret; \
+			END(__CONCAT(x, _err));
 
 #define KERNCALL	movq %rcx, %r10; syscall
 


More information about the svn-src-head mailing list