Re: [PATCH 06/25] xor: cleanup registration and probing

From: Eric Biggers

Date: Fri Feb 27 2026 - 23:41:59 EST


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