Skip to content

Commit

Permalink
x86/raid6: correctly check for assembler capabilities
Browse files Browse the repository at this point in the history
Just like for AVX2 (which simply needs an #if -> #ifdef conversion),
SSSE3 assembler support should be checked for before using it.

Signed-off-by: Jan Beulich <[email protected]>
Cc: Jim Kukunas <[email protected]>
Acked-by: Thomas Gleixner <[email protected]>
Signed-off-by: NeilBrown <[email protected]>
  • Loading branch information
jbeulich authored and neilbrown committed Feb 3, 2015
1 parent d959014 commit 75aaf4c
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 2 deletions.
1 change: 1 addition & 0 deletions arch/x86/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,7 @@ cfi-sections := $(call as-instr,.cfi_sections .debug_frame,-DCONFIG_AS_CFI_SECTI

# does binutils support specific instructions?
asinstr := $(call as-instr,fxsaveq (%rax),-DCONFIG_AS_FXSAVEQ=1)
asinstr += $(call as-instr,pshufb %xmm0$(comma)%xmm0,-DCONFIG_AS_SSSE3=1)
asinstr += $(call as-instr,crc32l %eax$(comma)%eax,-DCONFIG_AS_CRC32=1)
avx_instr := $(call as-instr,vxorps %ymm0$(comma)%ymm1$(comma)%ymm2,-DCONFIG_AS_AVX=1)
avx2_instr :=$(call as-instr,vpbroadcastb %xmm0$(comma)%ymm1,-DCONFIG_AS_AVX2=1)
Expand Down
2 changes: 1 addition & 1 deletion lib/raid6/algos.c
Original file line number Diff line number Diff line change
Expand Up @@ -89,10 +89,10 @@ void (*raid6_datap_recov)(int, size_t, int, void **);
EXPORT_SYMBOL_GPL(raid6_datap_recov);

const struct raid6_recov_calls *const raid6_recov_algos[] = {
#if (defined(__i386__) || defined(__x86_64__)) && !defined(__arch_um__)
#ifdef CONFIG_AS_AVX2
&raid6_recov_avx2,
#endif
#ifdef CONFIG_AS_SSSE3
&raid6_recov_ssse3,
#endif
&raid6_recov_intx1,
Expand Down
2 changes: 1 addition & 1 deletion lib/raid6/recov_avx2.c
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
* of the License.
*/

#if CONFIG_AS_AVX2
#ifdef CONFIG_AS_AVX2

#include <linux/raid/pq.h>
#include "x86.h"
Expand Down
6 changes: 6 additions & 0 deletions lib/raid6/recov_ssse3.c
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@
* of the License.
*/

#ifdef CONFIG_AS_SSSE3

#include <linux/raid/pq.h>
#include "x86.h"

Expand Down Expand Up @@ -330,3 +332,7 @@ const struct raid6_recov_calls raid6_recov_ssse3 = {
#endif
.priority = 1,
};

#else
#warning "your version of binutils lacks SSSE3 support"
#endif

0 comments on commit 75aaf4c

Please sign in to comment.