From owner-svn-src-stable@freebsd.org Sat Jan 9 16:25:32 2016 Return-Path: Delivered-To: svn-src-stable@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 92A8AA69ED5; Sat, 9 Jan 2016 16:25:32 +0000 (UTC) (envelope-from dchagin@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 mx1.freebsd.org (Postfix) with ESMTPS id 45B961CE3; Sat, 9 Jan 2016 16:25:32 +0000 (UTC) (envelope-from dchagin@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u09GPVuQ038321; Sat, 9 Jan 2016 16:25:31 GMT (envelope-from dchagin@FreeBSD.org) Received: (from dchagin@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u09GPV66038318; Sat, 9 Jan 2016 16:25:31 GMT (envelope-from dchagin@FreeBSD.org) Message-Id: <201601091625.u09GPV66038318@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dchagin set sender to dchagin@FreeBSD.org using -f From: Dmitry Chagin Date: Sat, 9 Jan 2016 16:25:31 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-10@freebsd.org Subject: svn commit: r293536 - in stable/10/sys: amd64/linux amd64/linux32 i386/linux X-SVN-Group: stable-10 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-stable@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for all the -stable branches of the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jan 2016 16:25:32 -0000 Author: dchagin Date: Sat Jan 9 16:25:30 2016 New Revision: 293536 URL: https://svnweb.freebsd.org/changeset/base/293536 Log: MFC r283432: Being exported through vdso the note.Linux section used by glibc to determine the kernel version (this saves one uname call). Temporarily disable the export of a note.Linux section until I figured out how to change the kernel version in the note.Linux on the fly. Modified: stable/10/sys/amd64/linux/linux_locore.s stable/10/sys/amd64/linux32/linux32_locore.s stable/10/sys/i386/linux/linux_locore.s Directory Properties: stable/10/ (props changed) Modified: stable/10/sys/amd64/linux/linux_locore.s ============================================================================== --- stable/10/sys/amd64/linux/linux_locore.s Sat Jan 9 16:24:30 2016 (r293535) +++ stable/10/sys/amd64/linux/linux_locore.s Sat Jan 9 16:25:30 2016 (r293536) @@ -58,7 +58,7 @@ NON_GPROF_ENTRY(__vdso_getcpu) .weak getcpu .set getcpu, __vdso_getcpu - +#if 0 .section .note.Linux, "a",@note .long 2f - 1f /* namesz */ .balign 4 @@ -73,3 +73,4 @@ NON_GPROF_ENTRY(__vdso_getcpu) 4: .balign 4 .previous +#endif Modified: stable/10/sys/amd64/linux32/linux32_locore.s ============================================================================== --- stable/10/sys/amd64/linux32/linux32_locore.s Sat Jan 9 16:24:30 2016 (r293535) +++ stable/10/sys/amd64/linux32/linux32_locore.s Sat Jan 9 16:25:30 2016 (r293536) @@ -55,7 +55,7 @@ NON_GPROF_ENTRY(linux32_vsyscall) ret .endvsyscall: - +#if 0 .section .note.Linux, "a",@note .long 2f - 1f /* namesz */ .balign 4 @@ -70,7 +70,7 @@ NON_GPROF_ENTRY(linux32_vsyscall) 4: .balign 4 .previous - +#endif #define do_cfa_expr(offset) \ .byte 0x0f; /* DW_CFA_def_cfa_expression */ \ Modified: stable/10/sys/i386/linux/linux_locore.s ============================================================================== --- stable/10/sys/i386/linux/linux_locore.s Sat Jan 9 16:24:30 2016 (r293535) +++ stable/10/sys/i386/linux/linux_locore.s Sat Jan 9 16:25:30 2016 (r293536) @@ -48,7 +48,7 @@ NON_GPROF_ENTRY(linux_vsyscall) ret .endvsyscall: - +#if 0 .section .note.Linux, "a",@note .long 2f - 1f /* namesz */ .balign 4 @@ -63,7 +63,7 @@ NON_GPROF_ENTRY(linux_vsyscall) 4: .balign 4 .previous - +#endif #define do_cfa_expr(offset) \ .byte 0x0f; /* DW_CFA_def_cfa_expression */ \