https://github.com/torvalds/linux
Raw File
Tip revision: 47ac09b91befbb6a235ab620c32af719f8208399 authored by Linus Torvalds on 18 August 2024, 20:17:27 UTC
Linux 6.11-rc4
Tip revision: 47ac09b
radix-tree.h
// SPDX-License-Identifier: GPL-2.0+
/* radix-tree helpers that are only shared with xarray */

struct kmem_cache;
struct rcu_head;

extern struct kmem_cache *radix_tree_node_cachep;
extern void radix_tree_node_rcu_free(struct rcu_head *head);
back to top