Symbol: chfs_node_ref
sys/ufs/chfs/chfs.h
134
struct chfs_node_ref *nref_next; /* next data node which belongs to the same vnode */
sys/ufs/chfs/chfs.h
143
#define REFS_BLOCK_LEN (255/sizeof(struct chfs_node_ref))
sys/ufs/chfs/chfs.h
168
static __inline struct chfs_node_ref *
sys/ufs/chfs/chfs.h
169
node_next(struct chfs_node_ref *nref)
sys/ufs/chfs/chfs.h
192
struct chfs_node_ref *nref; /* nref of the dirent */
sys/ufs/chfs/chfs.h
222
struct chfs_node_ref *latest_ref; /* latest node reference */
sys/ufs/chfs/chfs.h
227
struct chfs_node_ref *nref; /* nref of the node */
sys/ufs/chfs/chfs.h
277
struct chfs_node_ref *v; /* list of node informations */
sys/ufs/chfs/chfs.h
278
struct chfs_node_ref *dnode; /* list of data nodes */
sys/ufs/chfs/chfs.h
279
struct chfs_node_ref *dirents; /* list of directory entries */
sys/ufs/chfs/chfs.h
305
struct chfs_node_ref *first_node; /* first node of the block */
sys/ufs/chfs/chfs.h
306
struct chfs_node_ref *last_node; /* last node of the block */
sys/ufs/chfs/chfs.h
308
struct chfs_node_ref *gc_node; /* next node from the block
sys/ufs/chfs/chfs.h
487
struct chfs_node_ref *, struct chfs_node_ref **);
sys/ufs/chfs/chfs.h
489
struct chfs_node_ref *, struct chfs_node_ref **);
sys/ufs/chfs/chfs.h
491
struct chfs_node_ref *, struct chfs_node_ref **);
sys/ufs/chfs/chfs.h
495
struct chfs_node_ref *);
sys/ufs/chfs/chfs.h
496
struct chfs_node_ref* chfs_nref_next(struct chfs_node_ref *);
sys/ufs/chfs/chfs.h
498
struct chfs_eraseblock *, struct chfs_node_ref *);
sys/ufs/chfs/chfs.h
504
void chfs_mark_node_obsolete(struct chfs_mount *, struct chfs_node_ref *);
sys/ufs/chfs/chfs.h
511
chfs_nref_to_vc(struct chfs_node_ref *nref)
sys/ufs/chfs/chfs.h
535
struct chfs_node_ref* chfs_alloc_node_ref(
sys/ufs/chfs/chfs.h
548
struct chfs_node_ref* chfs_alloc_refblock(void);
sys/ufs/chfs/chfs.h
549
void chfs_free_refblock(struct chfs_node_ref *);
sys/ufs/chfs/chfs.h
561
struct chfs_node_ref *);
sys/ufs/chfs/chfs.h
620
int chfs_readdirent(struct mount *, struct chfs_node_ref *,
sys/ufs/chfs/chfs_build.c
114
struct chfs_node_ref *nref;
sys/ufs/chfs/chfs_build.c
123
while (nref != (struct chfs_node_ref *)vc) {
sys/ufs/chfs/chfs_build.c
124
struct chfs_node_ref *next = nref->nref_next;
sys/ufs/chfs/chfs_build.c
129
vc->dnode = (struct chfs_node_ref *)vc;
sys/ufs/chfs/chfs_build.c
132
while (nref != (struct chfs_node_ref *)vc) {
sys/ufs/chfs/chfs_build.c
133
struct chfs_node_ref *next = nref->nref_next;
sys/ufs/chfs/chfs_build.c
138
vc->dirents = (struct chfs_node_ref *)vc;
sys/ufs/chfs/chfs_build.c
186
vc->v = (struct chfs_node_ref *)vc;
sys/ufs/chfs/chfs_build.c
213
struct chfs_node_ref **nref;
sys/ufs/chfs/chfs_gc.c
1079
struct chfs_node_ref *nref;
sys/ufs/chfs/chfs_gc.c
308
struct chfs_node_ref *nref;
sys/ufs/chfs/chfs_gc.c
321
while (deleted && chvc->v != (struct chfs_node_ref *)chvc) {
sys/ufs/chfs/chfs_gc.c
425
struct chfs_node_ref *nref;
sys/ufs/chfs/chfs_gc.c
49
struct chfs_vnode_cache *, struct chfs_node_ref *);
sys/ufs/chfs/chfs_gc.c
51
struct chfs_eraseblock *, struct chfs_node_ref *,
sys/ufs/chfs/chfs_gc.c
700
struct chfs_vnode_cache *chvc, struct chfs_node_ref *nref)
sys/ufs/chfs/chfs_gc.c
702
struct chfs_node_ref *newnref;
sys/ufs/chfs/chfs_gc.c
848
struct chfs_eraseblock *cheb, struct chfs_node_ref *nref,
sys/ufs/chfs/chfs_gc.c
992
struct chfs_node_ref *nref;
sys/ufs/chfs/chfs_malloc.c
187
struct chfs_node_ref*
sys/ufs/chfs/chfs_malloc.c
191
struct chfs_node_ref *nref;
sys/ufs/chfs/chfs_malloc.c
207
chfs_free_refblock(struct chfs_node_ref *nref)
sys/ufs/chfs/chfs_malloc.c
218
struct chfs_node_ref*
sys/ufs/chfs/chfs_malloc.c
221
struct chfs_node_ref *nref, *new, *old __diagused;
sys/ufs/chfs/chfs_malloc.c
258
struct chfs_node_ref *nref, *block;
sys/ufs/chfs/chfs_malloc.c
59
(REFS_BLOCK_LEN + 1) * sizeof(struct chfs_node_ref), 0, 0,
sys/ufs/chfs/chfs_nodeops.c
122
struct chfs_node_ref *old_nref, struct chfs_node_ref **list)
sys/ufs/chfs/chfs_nodeops.c
127
struct chfs_node_ref *tmpnref;
sys/ufs/chfs/chfs_nodeops.c
129
if (*list == (struct chfs_node_ref *)vc) {
sys/ufs/chfs/chfs_nodeops.c
141
tmpnref->nref_next != (struct chfs_node_ref *)vc) {
sys/ufs/chfs/chfs_nodeops.c
159
struct chfs_node_ref *old_nref, struct chfs_node_ref **list)
sys/ufs/chfs/chfs_nodeops.c
218
struct chfs_vnode_cache *vc, struct chfs_node_ref *new)
sys/ufs/chfs/chfs_nodeops.c
221
struct chfs_node_ref *nref;
sys/ufs/chfs/chfs_nodeops.c
224
while (vc->v != (struct chfs_node_ref *)vc) {
sys/ufs/chfs/chfs_nodeops.c
229
new->nref_next = (struct chfs_node_ref *)vc;
sys/ufs/chfs/chfs_nodeops.c
234
struct chfs_node_ref *
sys/ufs/chfs/chfs_nodeops.c
235
chfs_nref_next(struct chfs_node_ref *nref)
sys/ufs/chfs/chfs_nodeops.c
256
struct chfs_eraseblock *cheb, struct chfs_node_ref *nref)
sys/ufs/chfs/chfs_nodeops.c
258
struct chfs_node_ref *next;
sys/ufs/chfs/chfs_nodeops.c
278
struct chfs_node_ref *nref)
sys/ufs/chfs/chfs_nodeops.c
425
struct chfs_node_ref *nref;
sys/ufs/chfs/chfs_nodeops.c
73
struct chfs_node_ref *new, struct chfs_node_ref **list)
sys/ufs/chfs/chfs_nodeops.c
77
struct chfs_node_ref *nextref = *list;
sys/ufs/chfs/chfs_nodeops.c
78
struct chfs_node_ref *prevref = NULL;
sys/ufs/chfs/chfs_nodeops.c
80
while (nextref && nextref != (struct chfs_node_ref *)vc &&
sys/ufs/chfs/chfs_nodeops.c
84
(struct chfs_node_ref *)vc &&
sys/ufs/chfs/chfs_nodeops.c
96
if (nextref && nextref != (struct chfs_node_ref *)vc &&
sys/ufs/chfs/chfs_readinode.c
1110
struct chfs_node_ref *nref;
sys/ufs/chfs/chfs_readinode.c
149
struct chfs_node_ref *nref = td->node->nref;
sys/ufs/chfs/chfs_readinode.c
215
struct chfs_node_ref *
sys/ufs/chfs/chfs_readinode.c
216
chfs_first_valid_data_ref(struct chfs_node_ref *nref)
sys/ufs/chfs/chfs_readinode.c
45
struct chfs_node_ref *chfs_first_valid_data_ref(struct chfs_node_ref *);
sys/ufs/chfs/chfs_readinode.c
612
struct chfs_node_ref *nref)
sys/ufs/chfs/chfs_readinode.c
791
struct chfs_node_ref *nref;
sys/ufs/chfs/chfs_scan.c
108
struct chfs_node_ref *nref;
sys/ufs/chfs/chfs_scan.c
183
struct chfs_node_ref *prev, *nref;
sys/ufs/chfs/chfs_scan.c
357
struct chfs_node_ref *nref;
sys/ufs/chfs/chfs_scan.c
438
struct chfs_node_ref *nref;
sys/ufs/chfs/chfs_vfsops.c
477
struct chfs_node_ref* nref = NULL;
sys/ufs/chfs/chfs_vnode.c
141
chfs_readdirent(struct mount *mp, struct chfs_node_ref *chnr, struct chfs_inode *pdir)
sys/ufs/chfs/chfs_wbuf.c
63
struct chfs_node_ref *nref;
sys/ufs/chfs/chfs_write.c
164
struct chfs_node_ref *nref;
sys/ufs/chfs/chfs_write.c
287
struct chfs_node_ref *nref;
sys/ufs/chfs/chfs_write.c
474
struct chfs_node_ref *nref;
sys/ufs/chfs/chfs_write.c
52
struct chfs_node_ref *nref;
sys/ufs/chfs/chfs_write.c
520
while (ip->chvc->dnode != (struct chfs_node_ref *)ip->chvc) {
sys/ufs/chfs/chfs_write.c
527
while (ip->chvc->v != (struct chfs_node_ref *)ip->chvc) {