HomeSort by: relevance | last modified time | path
    Searched refs:chfs_mount (Results 1 - 18 of 18) sorted by relevancy

  /src/sys/ufs/chfs/
chfs.h 331 /* struct chfs_mount - CHFS main descriptor structure */
332 struct chfs_mount { struct
458 void chfs_calc_trigger_levels(struct chfs_mount *);
459 int chfs_build_filesystem(struct chfs_mount *);
460 void chfs_build_set_vnodecache_nlink(struct chfs_mount *,
462 void chfs_build_remove_unlinked_vnode(struct chfs_mount *,
466 int chfs_scan_eraseblock(struct chfs_mount *, struct chfs_eraseblock *);
467 struct chfs_vnode_cache *chfs_scan_make_vnode_cache(struct chfs_mount *,
470 int chfs_scan_check_vnode(struct chfs_mount *,
472 int chfs_scan_mark_dirent_obsolete(struct chfs_mount *,
    [all...]
chfs_pool.h 41 struct chfs_mount * chp_mount;
65 const char *what, struct chfs_mount *chmp);
77 void chfs_str_pool_init(struct chfs_str_pool *, struct chfs_mount *);
chfs_vnode_cache.c 53 chfs_vnode_cache_get(struct chfs_mount *chmp, ino_t vno)
78 chfs_vnode_cache_add(struct chfs_mount *chmp,
100 chfs_vnode_cache_remove(struct chfs_mount *chmp,
chfs_gc.c 38 void chfs_gc_release_inode(struct chfs_mount *,
40 struct chfs_inode *chfs_gc_fetch_inode(struct chfs_mount *,
42 int chfs_check(struct chfs_mount *, struct chfs_vnode_cache *);
43 void chfs_clear_inode(struct chfs_mount *, struct chfs_inode *);
46 struct chfs_eraseblock *find_gc_block(struct chfs_mount *);
47 int chfs_gcollect_pristine(struct chfs_mount *,
50 int chfs_gcollect_live(struct chfs_mount *,
53 int chfs_gcollect_vnode(struct chfs_mount *, struct chfs_inode *);
54 int chfs_gcollect_dirent(struct chfs_mount *,
57 int chfs_gcollect_deletion_dirent(struct chfs_mount *,
    [all...]
chfs_pool.c 61 struct chfs_mount *chmp)
88 struct chfs_mount *chmp;
115 struct chfs_mount *chmp;
128 chfs_str_pool_init(struct chfs_str_pool *chsp, struct chfs_mount *chmp)
chfs_readinode.c 41 int chfs_check_td_data(struct chfs_mount *,
43 int chfs_check_td_node(struct chfs_mount *,
46 int chfs_add_tmp_dnode_to_tree(struct chfs_mount *,
53 static void chfs_kill_td(struct chfs_mount *,
55 static void chfs_kill_tdi(struct chfs_mount *,
63 int chfs_add_frag_to_fragtree(struct chfs_mount *,
66 void chfs_obsolete_node_frag(struct chfs_mount *,
69 int chfs_get_data_nodes(struct chfs_mount *,
72 int chfs_build_fragtree(struct chfs_mount *,
141 chfs_check_td_data(struct chfs_mount *chmp
    [all...]
chfs_vnode.c 55 chfs_vnode_lookup(struct chfs_mount *chmp, ino_t vno)
72 struct chfs_mount *chmp = ump->um_chfs;
144 struct chfs_mount *chmp = ump->um_chfs;
199 struct chfs_mount* chmp = ump->um_chfs;
339 chfs_change_size_free(struct chfs_mount *chmp,
357 chfs_change_size_dirty(struct chfs_mount *chmp,
375 chfs_change_size_unchecked(struct chfs_mount *chmp,
393 chfs_change_size_used(struct chfs_mount *chmp,
411 chfs_change_size_wasted(struct chfs_mount *chmp,
chfs_nodeops.c 44 chfs_update_eb_dirty(struct chfs_mount *chmp,
71 chfs_add_node_to_list(struct chfs_mount *chmp,
120 chfs_remove_node_from_list(struct chfs_mount *chmp,
157 chfs_remove_and_obsolete(struct chfs_mount *chmp,
173 chfs_add_fd_to_inode(struct chfs_mount *chmp,
217 chfs_add_vnode_ref_to_vc(struct chfs_mount *chmp,
255 chfs_nref_len(struct chfs_mount *chmp,
277 chfs_mark_node_obsolete(struct chfs_mount *chmp,
421 chfs_close_eraseblock(struct chfs_mount *chmp,
458 chfs_reserve_space_normal(struct chfs_mount *chmp, uint32_t size, int prio
    [all...]
chfs_wbuf.c 59 chfs_flush_wbuf(struct chfs_mount *chmp, int pad)
120 chfs_fill_wbuf(struct chfs_mount *chmp, const u_char *buf, size_t len)
143 chfs_write_wbuf(struct chfs_mount* chmp, const struct iovec *invecs, long count,
247 int chfs_flush_pending_wbuf(struct chfs_mount *chmp)
chfs_scan.c 41 chfs_scan_make_vnode_cache(struct chfs_mount *chmp, ino_t vno)
102 chfs_scan_check_vnode(struct chfs_mount *chmp,
179 chfs_scan_mark_dirent_obsolete(struct chfs_mount *chmp,
210 chfs_add_fd_to_list(struct chfs_mount *chmp,
278 chfs_scan_check_dirent_node(struct chfs_mount *chmp,
351 chfs_scan_check_data_node(struct chfs_mount *chmp,
406 chfs_scan_classify_cheb(struct chfs_mount *chmp,
428 chfs_scan_eraseblock(struct chfs_mount *chmp,
chfs_build.c 42 chfs_calc_trigger_levels(struct chfs_mount *chmp)
69 chfs_build_set_vnodecache_nlink(struct chfs_mount *chmp,
110 chfs_build_remove_unlinked_vnode(struct chfs_mount *chmp,
208 chfs_build_filesystem(struct chfs_mount *chmp)
chfs_erase.c 48 chfs_remap_leb(struct chfs_mount *chmp)
chfs_inode.h 81 struct chfs_mount *chmp; /* chfs mount point - TODO we should remove it */
chfs_vfsops.c 68 static int chfs_mount(struct mount *, const char *, void *, size_t *);
111 chfs_mount(struct mount *mp, function in typeref:typename:int
120 struct chfs_mount *chmp;
215 struct chfs_mount* chmp;
250 ump->um_chfs = kmem_zalloc(sizeof(struct chfs_mount), KM_SLEEP);
377 kmem_free(chmp, sizeof(struct chfs_mount));
392 struct chfs_mount *chmp;
471 struct chfs_mount *chmp;
706 struct chfs_mount *chmp;
803 .vfs_mount = chfs_mount,
    [all...]
chfs_write.c 45 chfs_write_flash_vnode(struct chfs_mount *chmp,
157 chfs_write_flash_dirent(struct chfs_mount *chmp, struct chfs_inode *pdir,
278 chfs_write_flash_dnode(struct chfs_mount *chmp, struct vnode *vp,
420 struct chfs_mount *chmp = ump->um_chfs;
473 struct chfs_mount *chmp = ump->um_chfs;
chfs_vnops.c 62 struct chfs_mount* chmp;
225 struct chfs_mount *chmp;
460 struct chfs_mount *chmp = ump->um_chfs;
626 struct chfs_mount *chmp;
769 struct chfs_mount *chmp;
1268 struct chfs_mount *chmp;
1350 struct chfs_mount *chmp;
1502 struct chfs_mount *chmp = ip->chmp;
1562 struct chfs_mount *chmp = ip->chmp;
chfs_subr.c 197 struct chfs_mount *chmp;
  /src/sys/ufs/ufs/
ufsmount.h 85 struct chfs_mount *chfs; /* CHFS */

Completed in 20 milliseconds