On Mon, Oct 20, 2025 at 03:03:04AM -0700, Jason Miu wrote:
> +static struct kho_radix_tree *kho_alloc_radix_tree(void)
> {
> + return (struct kho_radix_tree *)get_zeroed_page(GFP_KERNEL);
> +}I was reading the thread over here: https://lore.kernel.org/all/[email protected]/ And I guess this stuff should just use kzalloc(sizeof(struct kho_radix_tree), GFP_KERNEL); Jason
