diff options
author | David Quigley <[email protected]> | 2016-07-22 11:52:49 -0400 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2016-11-29 14:34:27 -0800 |
commit | a6255b7fce400d485a0e87cbe369aa0ed7dc5dc4 (patch) | |
tree | 520198dbeb4bbe1783726a195ba1b66b12acea0b /module/zfs/vdev_raidz_math_avx2.c | |
parent | 616fa7c02b0cc373f011998f56ed53bb37742d13 (diff) |
DLPX-44812 integrate EP-220 large memory scalability
Diffstat (limited to 'module/zfs/vdev_raidz_math_avx2.c')
-rw-r--r-- | module/zfs/vdev_raidz_math_avx2.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/module/zfs/vdev_raidz_math_avx2.c b/module/zfs/vdev_raidz_math_avx2.c index 90c94c77c..508c95f8d 100644 --- a/module/zfs/vdev_raidz_math_avx2.c +++ b/module/zfs/vdev_raidz_math_avx2.c @@ -21,7 +21,6 @@ /* * Copyright (C) 2016 Gvozden Nešković. All rights reserved. */ - #include <sys/isa_defs.h> #if defined(__x86_64) && defined(HAVE_AVX2) @@ -401,7 +400,12 @@ DEFINE_REC_METHODS(avx2); static boolean_t raidz_will_avx2_work(void) { +/* ABD Bringup -- vector code not ready */ +#if 1 + return (B_FALSE); +#else return (zfs_avx_available() && zfs_avx2_available()); +#endif } const raidz_impl_ops_t vdev_raidz_avx2_impl = { |