]> Git Repo - linux.git/commitdiff
lib/raid6: align AVX512 constants to 512 bits, not bytes
authorDenys Vlasenko <[email protected]>
Sat, 12 Aug 2017 17:43:46 +0000 (19:43 +0200)
committerShaohua Li <[email protected]>
Fri, 25 Aug 2017 17:21:47 +0000 (10:21 -0700)
Signed-off-by: Denys Vlasenko <[email protected]>
Cc: H. Peter Anvin <[email protected]>
Cc: [email protected]
Cc: Jim Kukunas <[email protected]>
Cc: Fenghua Yu <[email protected]>
Cc: Megha Dey <[email protected]>
Cc: Gayatri Kammela <[email protected]>
Cc: [email protected]
Cc: [email protected]
Signed-off-by: Shaohua Li <[email protected]>
lib/raid6/avx512.c

index f524a797200652aec220f3c09f0c5e790b234c87..46df7977b9718bdc4b6ca1960792bae62b8442b7 100644 (file)
@@ -29,7 +29,7 @@
 
 static const struct raid6_avx512_constants {
        u64 x1d[8];
-} raid6_avx512_constants __aligned(512) = {
+} raid6_avx512_constants __aligned(512/8) = {
        { 0x1d1d1d1d1d1d1d1dULL, 0x1d1d1d1d1d1d1d1dULL,
          0x1d1d1d1d1d1d1d1dULL, 0x1d1d1d1d1d1d1d1dULL,
          0x1d1d1d1d1d1d1d1dULL, 0x1d1d1d1d1d1d1d1dULL,
This page took 0.061866 seconds and 4 git commands to generate.