mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-07-22 22:07:35 -04:00
Replace the static array of algorithms with a call to an architecture helper to register algorithms. This serves two purposes: it avoid having to register all algorithms in a single central place, and it removes the need for the priority field by just registering the algorithms that the architecture considers suitable for the currently running CPUs. [hch@lst.de: register avx512 after avx2] Link: https://lore.kernel.org/20260527074539.2292913-3-hch@lst.de Link: https://lore.kernel.org/20260518051804.462141-11-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>
42 lines
1.2 KiB
C
42 lines
1.2 KiB
C
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
/*
|
|
* Copyright 2003 H. Peter Anvin - All Rights Reserved
|
|
*/
|
|
#ifndef _PQ_IMPL_H
|
|
#define _PQ_IMPL_H
|
|
|
|
#include <linux/init.h>
|
|
#include <linux/raid/pq_tables.h>
|
|
|
|
/* Routine choices */
|
|
struct raid6_calls {
|
|
const char *name;
|
|
void (*gen_syndrome)(int disks, size_t bytes, void **ptrs);
|
|
void (*xor_syndrome)(int disks, int start, int stop, size_t bytes,
|
|
void **ptrs);
|
|
};
|
|
|
|
struct raid6_recov_calls {
|
|
const char *name;
|
|
void (*data2)(int disks, size_t bytes, int faila, int failb,
|
|
void **ptrs);
|
|
void (*datap)(int disks, size_t bytes, int faila, void **ptrs);
|
|
};
|
|
|
|
void __init raid6_algo_add(const struct raid6_calls *algo);
|
|
void __init raid6_algo_add_default(void);
|
|
void __init raid6_recov_algo_add(const struct raid6_recov_calls *algo);
|
|
|
|
/* for the kunit test */
|
|
const struct raid6_calls *raid6_algo_find(unsigned int idx);
|
|
const struct raid6_recov_calls *raid6_recov_algo_find(unsigned int idx);
|
|
|
|
/* generic implementations */
|
|
extern const struct raid6_calls raid6_intx1;
|
|
extern const struct raid6_calls raid6_intx2;
|
|
extern const struct raid6_calls raid6_intx4;
|
|
extern const struct raid6_calls raid6_intx8;
|
|
extern const struct raid6_recov_calls raid6_recov_intx1;
|
|
|
|
#endif /* _PQ_IMPL_H */
|