Home
last modified time | relevance | path

Searched refs:chfs_node_frag (Results 1 – 4 of 4) sorted by relevance

/netbsd/src/sys/ufs/chfs/
Dchfs_readinode.c58 struct chfs_node_frag *new_fragment(struct chfs_full_dnode *,
61 int no_overlapping_node(struct rb_tree *, struct chfs_node_frag *,
62 struct chfs_node_frag *, uint32_t);
65 struct chfs_node_frag *);
67 struct chfs_node_frag *);
109 const struct chfs_node_frag *frag1 = n1; in frag_compare_nodes()
110 const struct chfs_node_frag *frag2 = n2; in frag_compare_nodes()
118 const struct chfs_node_frag *frag = n; in frag_compare_key()
127 .rbto_node_offset = offsetof(struct chfs_node_frag, rb_node),
468 struct chfs_node_frag *
[all …]
Dchfs.h234 struct chfs_node_frag { struct
242 static __inline struct chfs_node_frag * argument
245 struct chfs_node_frag *frag; in frag_first()
247 frag = (struct chfs_node_frag *)RB_TREE_MIN(tree); in frag_first()
253 static __inline struct chfs_node_frag *
256 struct chfs_node_frag *frag; in frag_last()
258 frag = (struct chfs_node_frag *)RB_TREE_MAX(tree); in frag_last()
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);
[all …]
Dchfs_malloc.c83 sizeof(struct chfs_node_frag), 0, 0, 0, in chfs_alloc_pool_caches()
361 struct chfs_node_frag*
364 struct chfs_node_frag *ret; in chfs_alloc_node_frag()
371 chfs_free_node_frag(struct chfs_node_frag *frag) in chfs_free_node_frag()
Dchfs_gc.c851 struct chfs_node_frag *frag; in chfs_gcollect_live()