diff options
Diffstat (limited to 'lib/raid6/avx2.c')
| -rw-r--r-- | lib/raid6/avx2.c | 8 | 
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/raid6/avx2.c b/lib/raid6/avx2.c index f299476e1d76..059024234dce 100644 --- a/lib/raid6/avx2.c +++ b/lib/raid6/avx2.c @@ -132,7 +132,7 @@ const struct raid6_calls raid6_avx2x1 = {  	raid6_avx21_xor_syndrome,  	raid6_have_avx2,  	"avx2x1", -	1			/* Has cache hints */ +	.priority = 2		/* Prefer AVX2 over priority 1 (SSE2 and others) */  };  /* @@ -262,7 +262,7 @@ const struct raid6_calls raid6_avx2x2 = {  	raid6_avx22_xor_syndrome,  	raid6_have_avx2,  	"avx2x2", -	1			/* Has cache hints */ +	.priority = 2		/* Prefer AVX2 over priority 1 (SSE2 and others) */  };  #ifdef CONFIG_X86_64 @@ -465,6 +465,6 @@ const struct raid6_calls raid6_avx2x4 = {  	raid6_avx24_xor_syndrome,  	raid6_have_avx2,  	"avx2x4", -	1			/* Has cache hints */ +	.priority = 2		/* Prefer AVX2 over priority 1 (SSE2 and others) */  }; -#endif +#endif /* CONFIG_X86_64 */  |