diff options
author | dchagin <dchagin@FreeBSD.org> | 2015-05-24 16:25:44 +0000 |
---|---|---|
committer | dchagin <dchagin@FreeBSD.org> | 2015-05-24 16:25:44 +0000 |
commit | d1e150aef17fd1b3c9caaf040fa7be17f04c873b (patch) | |
tree | 51cc1fecda53f7fc8ab9d62235f7662ce8e4bea1 /sys/amd64 | |
parent | eb881eec7ed974691ab44b62a8e4a751f8f7da9a (diff) | |
download | FreeBSD-src-d1e150aef17fd1b3c9caaf040fa7be17f04c873b.zip FreeBSD-src-d1e150aef17fd1b3c9caaf040fa7be17f04c873b.tar.gz |
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.
Differential Revision: https://reviews.freebsd.org/D1081
Reviewed by: trasz
Diffstat (limited to 'sys/amd64')
-rw-r--r-- | sys/amd64/linux/linux_locore.s | 3 | ||||
-rw-r--r-- | sys/amd64/linux32/linux32_locore.s | 4 |
2 files changed, 4 insertions, 3 deletions
diff --git a/sys/amd64/linux/linux_locore.s b/sys/amd64/linux/linux_locore.s index ec81f98..5dcc09a 100644 --- a/sys/amd64/linux/linux_locore.s +++ b/sys/amd64/linux/linux_locore.s @@ -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 diff --git a/sys/amd64/linux32/linux32_locore.s b/sys/amd64/linux32/linux32_locore.s index 7db3683..4edbdf3 100644 --- a/sys/amd64/linux32/linux32_locore.s +++ b/sys/amd64/linux32/linux32_locore.s @@ -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 */ \ |