mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-18 01:34:14 +08:00
8ef97622ca
Signed-off-by: Chris Mason <chris.mason@oracle.com>
16 lines
490 B
C
16 lines
490 B
C
#ifndef __BIT_RADIX__
|
|
#define __BIT_RADIX__
|
|
#include <linux/radix-tree.h>
|
|
|
|
int set_radix_bit(struct radix_tree_root *radix, unsigned long bit);
|
|
int test_radix_bit(struct radix_tree_root *radix, unsigned long bit);
|
|
int clear_radix_bit(struct radix_tree_root *radix, unsigned long bit);
|
|
int find_first_radix_bit(struct radix_tree_root *radix, unsigned long *retbits,
|
|
int nr);
|
|
|
|
static inline void init_bit_radix(struct radix_tree_root *radix)
|
|
{
|
|
INIT_RADIX_TREE(radix, GFP_NOFS);
|
|
}
|
|
#endif
|