Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

xor: move to lib/raid/

Move the RAID XOR code to lib/raid/ as it has nothing to do with the
crypto API.

Link: https://lkml.kernel.org/r/20260327061704.3707577-6-hch@lst.de
Signed-off-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Eric Biggers <ebiggers@kernel.org>
Tested-by: Eric Biggers <ebiggers@kernel.org>
Cc: Albert Ou <aou@eecs.berkeley.edu>
Cc: Alexander Gordeev <agordeev@linux.ibm.com>
Cc: Alexandre Ghiti <alex@ghiti.fr>
Cc: Andreas Larsson <andreas@gaisler.com>
Cc: Anton Ivanov <anton.ivanov@cambridgegreys.com>
Cc: Ard Biesheuvel <ardb@kernel.org>
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 S. Miller <davem@davemloft.net>
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: Jason A. Donenfeld <jason@zx2c4.com>
Cc: Johannes Berg <johannes@sipsolutions.net>
Cc: Li Nan <linan122@huawei.com>
Cc: Madhavan Srinivasan <maddy@linux.ibm.com>
Cc: Magnus Lindholm <linmag7@gmail.com>
Cc: Matt Turner <mattst88@gmail.com>
Cc: Michael Ellerman <mpe@ellerman.id.au>
Cc: Nicholas Piggin <npiggin@gmail.com>
Cc: Palmer Dabbelt <palmer@dabbelt.com>
Cc: Richard Henderson <richard.henderson@linaro.org>
Cc: Richard Weinberger <richard@nod.at>
Cc: Russell King <linux@armlinux.org.uk>
Cc: Song Liu <song@kernel.org>
Cc: Sven Schnelle <svens@linux.ibm.com>
Cc: Ted Ts'o <tytso@mit.edu>
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>

authored by

Christoph Hellwig and committed by
Andrew Morton
9e229025 3ea16a98

+14 -4
-2
crypto/Kconfig
··· 2 2 # 3 3 # Generic algorithms support 4 4 # 5 - config XOR_BLOCKS 6 - tristate 7 5 8 6 # 9 7 # async_tx api: hardware offloaded memory transfer/transform support
-1
crypto/Makefile
··· 196 196 # 197 197 # generic algorithms and the async_tx api 198 198 # 199 - obj-$(CONFIG_XOR_BLOCKS) += xor.o 200 199 obj-$(CONFIG_ASYNC_CORE) += async_tx/ 201 200 obj-$(CONFIG_ASYMMETRIC_KEY_TYPE) += asymmetric_keys/ 202 201 crypto_simd-y := simd.o
crypto/xor.c lib/raid/xor/xor-core.c
+1
lib/Kconfig
··· 138 138 139 139 source "lib/crc/Kconfig" 140 140 source "lib/crypto/Kconfig" 141 + source "lib/raid/Kconfig" 141 142 142 143 config XXHASH 143 144 tristate
+1 -1
lib/Makefile
··· 120 120 obj-$(CONFIG_DEBUG_INFO_REDUCED) += debug_info.o 121 121 CFLAGS_debug_info.o += $(call cc-option, -femit-struct-debug-detailed=any) 122 122 123 - obj-y += math/ crc/ crypto/ tests/ vdso/ 123 + obj-y += math/ crc/ crypto/ tests/ vdso/ raid/ 124 124 125 125 obj-$(CONFIG_GENERIC_IOMAP) += iomap.o 126 126 obj-$(CONFIG_HAS_IOMEM) += iomap_copy.o devres.o
+4
lib/raid/Kconfig
··· 1 + # SPDX-License-Identifier: GPL-2.0 2 + 3 + config XOR_BLOCKS 4 + tristate
+3
lib/raid/Makefile
··· 1 + # SPDX-License-Identifier: GPL-2.0 2 + 3 + obj-y += xor/
+5
lib/raid/xor/Makefile
··· 1 + # SPDX-License-Identifier: GPL-2.0 2 + 3 + obj-$(CONFIG_XOR_BLOCKS) += xor.o 4 + 5 + xor-y += xor-core.o