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

lib/raid6/test/Makefile: Add avx512 gen_syndrome and recovery functions

Adding avx512 gen_syndrome and recovery functions so as to allow code to
be compiled and tested successfully in userspace.

This patch is tested in userspace and improvement in performace is
observed.

Cc: H. Peter Anvin <hpa@zytor.com>
Cc: Jim Kukunas <james.t.kukunas@linux.intel.com>
Cc: Fenghua Yu <fenghua.yu@intel.com>
Signed-off-by: Megha Dey <megha.dey@linux.intel.com>
Signed-off-by: Gayatri Kammela <gayatri.kammela@intel.com>
Reviewed-by: Fenghua Yu <fenghua.yu@intel.com>
Signed-off-by: Shaohua Li <shli@fb.com>

authored by

Gayatri Kammela and committed by
Shaohua Li
161db5d1 13c520b2

+4 -1
+4 -1
lib/raid6/test/Makefile
··· 32 32 endif 33 33 34 34 ifeq ($(IS_X86),yes) 35 - OBJS += mmx.o sse1.o sse2.o avx2.o recov_ssse3.o recov_avx2.o 35 + OBJS += mmx.o sse1.o sse2.o avx2.o recov_ssse3.o recov_avx2.o avx512.o recov_avx512.o 36 36 CFLAGS += $(shell echo "vpbroadcastb %xmm0, %ymm1" | \ 37 37 gcc -c -x assembler - >&/dev/null && \ 38 38 rm ./-.o && echo -DCONFIG_AS_AVX2=1) 39 + CFLAGS += $(shell echo "vpmovm2b %k1, %zmm5" | \ 40 + gcc -c -x assembler - >&/dev/null && \ 41 + rm ./-.o && echo -DCONFIG_AS_AVX512=1) 39 42 else ifeq ($(HAS_NEON),yes) 40 43 OBJS += neon.o neon1.o neon2.o neon4.o neon8.o 41 44 CFLAGS += -DCONFIG_KERNEL_MODE_NEON=1