aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorndesaulniers@google.com <ndesaulniers@google.com>2018-12-10 14:35:13 -0800
committerDavid S. Miller <davem@davemloft.net>2018-12-21 11:24:38 -0800
commit0ff70f62c6a7eb5521ab340624de4c19f0c0881c (patch)
treecce1d2035f79356382ce80f2e6e6d30f45412218
parentMerge tag 'scsi-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi (diff)
downloadlinux-dev-0ff70f62c6a7eb5521ab340624de4c19f0c0881c.tar.xz
linux-dev-0ff70f62c6a7eb5521ab340624de4c19f0c0881c.zip
sparc: vdso: Drop implicit common-page-size linker flag
GNU linker's -z common-page-size's default value is based on the target architecture. arch/sparc/vdso/Makefile sets it to the architecture default, which is implicit and redundant. Drop it. Link: https://lkml.kernel.org/r/20181206191231.192355-1-ndesaulniers@google.com Signed-off-by: Nick Desaulniers <ndesaulniers@google.com> Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r--arch/sparc/vdso/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/sparc/vdso/Makefile b/arch/sparc/vdso/Makefile
index a6e18ca4cc18..74e97f77e23b 100644
--- a/arch/sparc/vdso/Makefile
+++ b/arch/sparc/vdso/Makefile
@@ -34,7 +34,7 @@ targets += $(vdso_img_sodbg) $(vdso_img-y:%=vdso%.so)
CPPFLAGS_vdso.lds += -P -C
VDSO_LDFLAGS_vdso.lds = -m elf64_sparc -soname linux-vdso.so.1 --no-undefined \
- -z max-page-size=8192 -z common-page-size=8192
+ -z max-page-size=8192
$(obj)/vdso64.so.dbg: $(obj)/vdso.lds $(vobjs) FORCE
$(call if_changed,vdso)