mirror of
https://github.com/torvalds/linux.git
synced 2026-07-27 09:36:22 +02:00
Move the raid6 code to live in lib/raid/ with the XOR code, and change the internal organization so that each architecture has a subdirectory similar to the CRC, crypto and XOR libraries, and fix up the Makefile to only build files actually needed. Also move the kunit test case from the history test/ subdirectory to tests/ and use the normal naming scheme for it. Link: https://lore.kernel.org/20260518051804.462141-4-hch@lst.de Signed-off-by: Christoph Hellwig <hch@lst.de> Acked-by: Ard Biesheuvel <ardb@kernel.org> Tested-by: Ard Biesheuvel <ardb@kernel.org> # kunit only on arm64 Cc: Albert Ou <aou@eecs.berkeley.edu> Cc: Alexander Gordeev <agordeev@linux.ibm.com> Cc: Alexandre Ghiti <alex@ghiti.fr> Cc: Arnd Bergmann <arnd@arndb.de> Cc: "Borislav Petkov (AMD)" <bp@alien8.de> Cc: Catalin Marinas <catalin.marinas@arm.com> Cc: Chris Mason <clm@fb.com> Cc: Christian Borntraeger <borntraeger@linux.ibm.com> Cc: Dan Williams <dan.j.williams@intel.com> Cc: David Sterba <dsterba@suse.com> Cc: Heiko Carstens <hca@linux.ibm.com> Cc: Herbert Xu <herbert@gondor.apana.org.au> Cc: "H. Peter Anvin" <hpa@zytor.com> Cc: Huacai Chen <chenhuacai@kernel.org> Cc: Ingo Molnar <mingo@redhat.com> Cc: Li Nan <linan122@huawei.com> Cc: Madhavan Srinivasan <maddy@linux.ibm.com> Cc: Michael Ellerman <mpe@ellerman.id.au> Cc: Nicholas Piggin <npiggin@gmail.com> Cc: Palmer Dabbelt <palmer@dabbelt.com> Cc: Song Liu <song@kernel.org> Cc: Sven Schnelle <svens@linux.ibm.com> Cc: Vasily Gorbik <gor@linux.ibm.com> Cc: WANG Xuerui <kernel@xen0n.name> Cc: Will Deacon <will@kernel.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
23 lines
1.0 KiB
C
23 lines
1.0 KiB
C
// SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
void raid6_neon1_gen_syndrome_real(int disks, unsigned long bytes, void **ptrs);
|
|
void raid6_neon1_xor_syndrome_real(int disks, int start, int stop,
|
|
unsigned long bytes, void **ptrs);
|
|
void raid6_neon2_gen_syndrome_real(int disks, unsigned long bytes, void **ptrs);
|
|
void raid6_neon2_xor_syndrome_real(int disks, int start, int stop,
|
|
unsigned long bytes, void **ptrs);
|
|
void raid6_neon4_gen_syndrome_real(int disks, unsigned long bytes, void **ptrs);
|
|
void raid6_neon4_xor_syndrome_real(int disks, int start, int stop,
|
|
unsigned long bytes, void **ptrs);
|
|
void raid6_neon8_gen_syndrome_real(int disks, unsigned long bytes, void **ptrs);
|
|
void raid6_neon8_xor_syndrome_real(int disks, int start, int stop,
|
|
unsigned long bytes, void **ptrs);
|
|
void __raid6_2data_recov_neon(int bytes, uint8_t *p, uint8_t *q, uint8_t *dp,
|
|
uint8_t *dq, const uint8_t *pbmul,
|
|
const uint8_t *qmul);
|
|
|
|
void __raid6_datap_recov_neon(int bytes, uint8_t *p, uint8_t *q, uint8_t *dq,
|
|
const uint8_t *qmul);
|
|
|
|
|