Linux Kernel
3.7.1
|
#include <radix-tree.h>
Data Fields | |
unsigned long | index |
unsigned long | next_index |
unsigned long | tags |
struct radix_tree_iter - radix tree iterator state
: index of current slot : next-to-last index for this chunk : bit-mask for tag-iterating
This radix tree iterator works in terms of "chunks" of slots. A chunk is a subinterval of slots contained within one radix tree leaf node. It is described by a pointer to its first slot and a struct radix_tree_iter which holds the chunk's position in the tree and its size. For tagged iteration radix_tree_iter also holds the slots' bit-mask for one chosen radix tree tag.
Definition at line 275 of file radix-tree.h.
unsigned long index |
Definition at line 276 of file radix-tree.h.
unsigned long next_index |
Definition at line 277 of file radix-tree.h.
unsigned long tags |
Definition at line 278 of file radix-tree.h.