Re: [PATCH 06/25] xor: cleanup registration and probing
Eric Biggers <[email protected]>
| Newsgroups | gmane.linux.ports.alpha,gmane.linux.kernel,gmane.linux.ports.arm.kernel,gmane.linux.ports.ppc64.devel,gmane.linux.ports.riscv,gmane.linux.ports.sparc,gmane.linux.uml.devel,gmane.linux.kernel.cryptoapi,gmane.comp.file-systems.btrfs,gmane.linux.kernel.cross-arch,gmane.linux.raid |
|---|---|
| Message-ID | <20260228044143.GC65277@quark> |
On Thu, Feb 26, 2026 at 07:10:18AM -0800, Christoph Hellwig wrote:
> /* Set of all registered templates. */
> static struct xor_block_template *__initdata template_list;
> +static int __initdata xor_forced = false;
bool instead of int
> b1 = (void *) __get_free_pages(GFP_KERNEL, 2);
> if (!b1) {
> - printk(KERN_WARNING "xor: Yikes! No memory available.\n");
> + pr_info("xor: Yikes! No memory available.\n");
pr_warn() instead of pr_info()
- Eric