Re: [PATCH] printk: kunit: support offstack cpumask

From: Arnd Bergmann
Date: Fri Jun 20 2025 - 15:30:58 EST


On Fri, Jun 20, 2025, at 21:25, Arnd Bergmann wrote:
>
> + if (alloc_cpumask_var(&test_cpus, GFP_KERNEL))
> + return;
> +

Sorry, I got the polarity wrong here, alloc_cpumask_var()
returns true on success.

Arnd