]> Git Repo - linux.git/commitdiff
x86/um/vdso: Drop implicit common-page-size linker flag
authorNick Desaulniers <[email protected]>
Mon, 10 Dec 2018 22:27:16 +0000 (14:27 -0800)
committerBorislav Petkov <[email protected]>
Tue, 11 Dec 2018 13:19:42 +0000 (14:19 +0100)
GNU linker's -z common-page-size's default value is based on the target
architecture. arch/x86/um/vdso/Makefile sets it to the architecture
default, which is implicit and redundant. Drop it so that one more LLVM
build issue gets addressed.

Signed-off-by: Nick Desaulniers <[email protected]>
Signed-off-by: Borislav Petkov <[email protected]>
Acked-by: Richard Weinberger <[email protected]>
Cc: "H. Peter Anvin" <[email protected]>
Cc: Ingo Molnar <[email protected]>
Cc: Jeff Dike <[email protected]>
Cc: Masahiro Yamada <[email protected]>
Cc: Thomas Gleixner <[email protected]>
Cc: [email protected]
Cc: x86-ml <[email protected]>
Link: https://lkml.kernel.org/r/[email protected]
arch/x86/um/vdso/Makefile

index 822ccdba93adac4cef571cfd0308c871c3bc28f7..bf94060fc06f3434064220f508a975c624118507 100644 (file)
@@ -26,7 +26,7 @@ targets += vdso.so vdso.so.dbg vdso.lds $(vobjs-y)
 CPPFLAGS_vdso.lds += -P -C
 
 VDSO_LDFLAGS_vdso.lds = -m64 -Wl,-soname=linux-vdso.so.1 \
-       -Wl,-z,max-page-size=4096 -Wl,-z,common-page-size=4096
+       -Wl,-z,max-page-size=4096
 
 $(obj)/vdso.o: $(src)/vdso.S $(obj)/vdso.so
 
This page took 0.083345 seconds and 4 git commands to generate.