Lines Matching defs:chfs_node_frag
233 /* struct chfs_node_frag - a fragment of a data node */
234 struct chfs_node_frag {
242 static __inline struct chfs_node_frag *
245 struct chfs_node_frag *frag;
247 frag = (struct chfs_node_frag *)RB_TREE_MIN(tree);
253 static __inline struct chfs_node_frag *
256 struct chfs_node_frag *frag;
258 frag = (struct chfs_node_frag *)RB_TREE_MAX(tree);
264 #define frag_next(tree, frag) (struct chfs_node_frag *)rb_tree_iterate(tree, frag, RB_DIR_RIGHT)
265 #define frag_prev(tree, frag) (struct chfs_node_frag *)rb_tree_iterate(tree, frag, RB_DIR_LEFT)
546 struct chfs_node_frag* chfs_alloc_node_frag(void);
547 void chfs_free_node_frag(struct chfs_node_frag *);