From 01017962908392b83764f29b21e687844636eed6 Mon Sep 17 00:00:00 2001 From: Gvozden Neskovic Date: Fri, 16 Dec 2016 02:31:33 +0100 Subject: ABD: Adapt avx512bw raidz assembly Adapt avx512bw implementation for use with abd buffers. Mul2 implementation is rewritten to take advantage of the BW instruction set. Reviewed-by: Brian Behlendorf Reviewed-by: Romain Dolbeau Signed-off-by: Gvozden Neskovic Closes #5477 --- module/zfs/vdev_raidz_math.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'module/zfs/vdev_raidz_math.c') diff --git a/module/zfs/vdev_raidz_math.c b/module/zfs/vdev_raidz_math.c index 85dd15cc3..a175bcf77 100644 --- a/module/zfs/vdev_raidz_math.c +++ b/module/zfs/vdev_raidz_math.c @@ -61,7 +61,7 @@ const raidz_impl_ops_t *raidz_all_maths[] = { &vdev_raidz_avx512f_impl, #endif #if defined(__x86_64) && defined(HAVE_AVX512BW) /* only x86_64 for now */ - // &vdev_raidz_avx512bw_impl, + &vdev_raidz_avx512bw_impl, #endif #if defined(__aarch64__) &vdev_raidz_aarch64_neon_impl, -- cgit v1.2.3