bcachefs-tools/include/linux/radix-tree.h

15 lines
273 B
C
Raw Normal View History

2017-01-08 12:13:18 +03:00
#ifndef _LINUX_RADIX_TREE_H
#define _LINUX_RADIX_TREE_H
struct radix_tree_root {
};
#define INIT_RADIX_TREE(root, mask) do {} while (0)
static inline void *radix_tree_lookup(struct radix_tree_root *r, unsigned long i)
{
return NULL;
}
#endif /* _LINUX_RADIX_TREE_H */