Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

selftests: vDSO: remove unnecessary command line defs from chacha test

CONFIG_FUNCTION_ALIGNMENT=0 is no longer necessary and BULID_VDSO wasn't
spelled right while BUILD_VDSO isn't necessary, so just remove these.

Reported-by: Adhemerval Zanella Netto <adhemerval.zanella@linaro.org>
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>

+1 -2
+1 -2
tools/testing/selftests/vDSO/Makefile
··· 46 46 $(OUTPUT)/vdso_test_chacha: CFLAGS += -idirafter $(top_srcdir)/tools/include \ 47 47 -idirafter $(top_srcdir)/arch/$(ARCH)/include \ 48 48 -idirafter $(top_srcdir)/include \ 49 - -D__ASSEMBLY__ -DBULID_VDSO -DCONFIG_FUNCTION_ALIGNMENT=0 \ 50 - -Wa,--noexecstack $(SODIUM_CFLAGS) 49 + -D__ASSEMBLY__ -Wa,--noexecstack $(SODIUM_CFLAGS)