From owner-svn-src-all@freebsd.org Sat Aug 4 13:57:51 2018 Return-Path: Delivered-To: svn-src-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id AF88A106C294; Sat, 4 Aug 2018 13:57:51 +0000 (UTC) (envelope-from kib@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 66165781B9; Sat, 4 Aug 2018 13:57:51 +0000 (UTC) (envelope-from kib@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 433B71061E; Sat, 4 Aug 2018 13:57:51 +0000 (UTC) (envelope-from kib@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w74DvpVq004862; Sat, 4 Aug 2018 13:57:51 GMT (envelope-from kib@FreeBSD.org) Received: (from kib@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w74DvouN004861; Sat, 4 Aug 2018 13:57:50 GMT (envelope-from kib@FreeBSD.org) Message-Id: <201808041357.w74DvouN004861@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kib set sender to kib@FreeBSD.org using -f From: Konstantin Belousov Date: Sat, 4 Aug 2018 13:57:50 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r337316 - in head/sys/amd64: linux linux32 X-SVN-Group: head X-SVN-Commit-Author: kib X-SVN-Commit-Paths: in head/sys/amd64: linux linux32 X-SVN-Commit-Revision: 337316 X-SVN-Commit-Repository: base MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Aug 2018 13:57:52 -0000 Author: kib Date: Sat Aug 4 13:57:50 2018 New Revision: 337316 URL: https://svnweb.freebsd.org/changeset/base/337316 Log: Add END()s for amd64 linux futex support routines. Sponsored by: The FreeBSD Foundation MFC after: 1 week Modified: head/sys/amd64/linux/linux_support.s head/sys/amd64/linux32/linux32_support.s Modified: head/sys/amd64/linux/linux_support.s ============================================================================== --- head/sys/amd64/linux/linux_support.s Sat Aug 4 13:39:44 2018 (r337315) +++ head/sys/amd64/linux/linux_support.s Sat Aug 4 13:57:50 2018 (r337316) @@ -49,6 +49,7 @@ ENTRY(futex_xchgl) xorl %eax,%eax movq %rax,PCB_ONFAULT(%r8) ret +END(futex_xchgl) ENTRY(futex_addl) movq PCPU(CURPCB),%r8 @@ -64,6 +65,7 @@ ENTRY(futex_addl) xorl %eax,%eax movq %rax,PCB_ONFAULT(%r8) ret +END(futex_addl) ENTRY(futex_orl) movq PCPU(CURPCB),%r8 @@ -83,6 +85,7 @@ ENTRY(futex_orl) xorl %eax,%eax movq %rax,PCB_ONFAULT(%r8) ret +END(futex_orl) ENTRY(futex_andl) movq PCPU(CURPCB),%r8 @@ -102,6 +105,7 @@ ENTRY(futex_andl) xorl %eax,%eax movq %rax,PCB_ONFAULT(%r8) ret +END(futex_andl) ENTRY(futex_xorl) movq PCPU(CURPCB),%r8 @@ -121,3 +125,4 @@ ENTRY(futex_xorl) xorl %eax,%eax movq %rax,PCB_ONFAULT(%r8) ret +END(futex_xorl) Modified: head/sys/amd64/linux32/linux32_support.s ============================================================================== --- head/sys/amd64/linux32/linux32_support.s Sat Aug 4 13:39:44 2018 (r337315) +++ head/sys/amd64/linux32/linux32_support.s Sat Aug 4 13:57:50 2018 (r337316) @@ -49,6 +49,7 @@ ENTRY(futex_xchgl) xorl %eax,%eax movq %rax,PCB_ONFAULT(%r8) ret +END(futex_xchgl) ENTRY(futex_addl) movq PCPU(CURPCB),%r8 @@ -64,6 +65,7 @@ ENTRY(futex_addl) xorl %eax,%eax movq %rax,PCB_ONFAULT(%r8) ret +END(futex_addl) ENTRY(futex_orl) movq PCPU(CURPCB),%r8 @@ -83,6 +85,7 @@ ENTRY(futex_orl) xorl %eax,%eax movq %rax,PCB_ONFAULT(%r8) ret +END(futex_orl) ENTRY(futex_andl) movq PCPU(CURPCB),%r8 @@ -102,6 +105,7 @@ ENTRY(futex_andl) xorl %eax,%eax movq %rax,PCB_ONFAULT(%r8) ret +END(futex_andl) ENTRY(futex_xorl) movq PCPU(CURPCB),%r8 @@ -121,3 +125,4 @@ ENTRY(futex_xorl) xorl %eax,%eax movq %rax,PCB_ONFAULT(%r8) ret +END(futex_xorl)