diff options
author | ndesaulniers@google.com <ndesaulniers@google.com> | 2018-12-11 01:35:13 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2018-12-21 22:24:38 +0300 |
commit | 0ff70f62c6a7eb5521ab340624de4c19f0c0881c (patch) | |
tree | cce1d2035f79356382ce80f2e6e6d30f45412218 /arch/sparc/vdso | |
parent | cf76c364a1e1e5224af80edf70a1e3023e1fcf8c (diff) | |
download | linux-0ff70f62c6a7eb5521ab340624de4c19f0c0881c.tar.xz |
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>
Diffstat (limited to 'arch/sparc/vdso')
-rw-r--r-- | arch/sparc/vdso/Makefile | 2 |
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) |