/src/sys/fs/v7fs/ |
v7fs_file.h | 44 int v7fs_file_lookup_by_name(struct v7fs_self *, struct v7fs_inode *, 46 int v7fs_file_allocate(struct v7fs_self *, struct v7fs_inode *, const char *, 48 int v7fs_file_deallocate(struct v7fs_self *, struct v7fs_inode *, const char *, 50 int v7fs_directory_add_entry(struct v7fs_self *,struct v7fs_inode *, v7fs_ino_t, 52 int v7fs_directory_remove_entry(struct v7fs_self *,struct v7fs_inode *, 56 int v7fs_file_rename(struct v7fs_self *, struct v7fs_inode *, const char *, 57 size_t, struct v7fs_inode *, const char *, size_t); 58 int v7fs_directory_replace_entry(struct v7fs_self *, struct v7fs_inode *, 60 int v7fs_file_link(struct v7fs_self *, struct v7fs_inode *, struct v7fs_inode *, [all...] |
v7fs_datablock.h | 38 int v7fs_datablock_foreach(struct v7fs_self *, struct v7fs_inode *, 40 v7fs_daddr_t v7fs_datablock_last(struct v7fs_self *, struct v7fs_inode *, 42 int v7fs_datablock_expand(struct v7fs_self *, struct v7fs_inode *, size_t); 43 int v7fs_datablock_contract(struct v7fs_self *, struct v7fs_inode *, size_t); 44 int v7fs_datablock_size_change(struct v7fs_self *, size_t, struct v7fs_inode *);
|
v7fs_inode.h | 1 /* $NetBSD: v7fs_inode.h,v 1.1 2011/06/27 11:52:25 uch Exp $ */ 36 struct v7fs_inode { struct 75 int v7fs_inode_load(struct v7fs_self *, struct v7fs_inode *, v7fs_ino_t); 76 int v7fs_inode_writeback(struct v7fs_self *, struct v7fs_inode *); 78 struct v7fs_inode *, struct v7fs_inode_diskimage *); 84 void v7fs_inode_chmod(struct v7fs_inode *, v7fs_mode_t); 85 void v7fs_inode_dump(const struct v7fs_inode *); 89 struct v7fs_inode *, v7fs_ino_t), void *);
|
v7fs_inode_util.c | 52 #include "v7fs_inode.h" 61 v7fs_inode_chmod(struct v7fs_inode *inode, v7fs_mode_t mode) 72 v7fs_inode_dump(const struct v7fs_inode *p) 97 int (*func)(struct v7fs_self *, void *, struct v7fs_inode *, v7fs_ino_t), 108 struct v7fs_inode inode;
|
v7fs_file.c | 54 #include "v7fs_inode.h" 69 v7fs_file_lookup_by_name(struct v7fs_self *fs, struct v7fs_inode *parent_dir, 129 v7fs_file_allocate(struct v7fs_self *fs, struct v7fs_inode *parent_dir, 133 struct v7fs_inode inode; 222 v7fs_file_deallocate(struct v7fs_self *fs, struct v7fs_inode *parent_dir, 226 struct v7fs_inode inode; 275 v7fs_directory_add_entry(struct v7fs_self *fs, struct v7fs_inode *parent_dir, 278 struct v7fs_inode inode; 329 v7fs_directory_remove_entry(struct v7fs_self *fs, struct v7fs_inode *parent_dir, 332 struct v7fs_inode inode [all...] |
v7fs_file_util.c | 50 #include "v7fs_inode.h" 69 v7fs_file_link(struct v7fs_self *fs, struct v7fs_inode *parent_dir, 70 struct v7fs_inode *p, const char *name, size_t namelen) 88 v7fs_file_symlink(struct v7fs_self *fs, struct v7fs_inode *p, 121 v7fs_file_rename(struct v7fs_self *fs, struct v7fs_inode *parent_from, 122 const char *from, size_t fromlen, struct v7fs_inode *parent_to, 126 struct v7fs_inode inode; 187 v7fs_directory_replace_entry(struct v7fs_self *fs, struct v7fs_inode *self_dir, 237 v7fs_file_lookup_by_number(struct v7fs_self *fs, struct v7fs_inode *parent_dir, 286 struct v7fs_inode inode [all...] |
v7fs_inode.c | 1 /* $NetBSD: v7fs_inode.c,v 1.3 2024/09/25 20:10:36 andvar Exp $ */ 37 __KERNEL_RCSID(0, "$NetBSD: v7fs_inode.c,v 1.3 2024/09/25 20:10:36 andvar Exp $"); 55 #include "v7fs_inode.h" 65 struct v7fs_inode *, struct v7fs_inode_diskimage *); 142 struct v7fs_inode inode; 162 struct v7fs_inode *mem, struct v7fs_inode_diskimage *disk) 196 struct v7fs_inode *mem, struct v7fs_inode_diskimage *disk) 221 v7fs_inode_load(struct v7fs_self *fs, struct v7fs_inode *p, v7fs_ino_t n) 249 v7fs_inode_writeback(struct v7fs_self *fs, struct v7fs_inode *mem)
|
v7fs_vnops.c | 55 #include <fs/v7fs/v7fs_inode.h> 98 struct v7fs_inode *parent = &parent_node->inode; 319 struct v7fs_inode *inode = &v7node->inode; 344 struct v7fs_inode *inode = &v7node->inode; 381 struct v7fs_inode *inode = &v7node->inode; 419 struct v7fs_inode *inode = &v7node->inode; 467 struct v7fs_inode *inode = &v7node->inode; 586 struct v7fs_inode *inode = &v7node->inode; 622 struct v7fs_inode *inode = &v7node->inode; 700 struct v7fs_inode *inode = &((struct v7fs_node *)vp->v_data)->inode [all...] |
v7fs_extern.h | 43 #include "v7fs_inode.h" 53 struct v7fs_inode inode; /* filesystem dependent implementation */
|
v7fs_datablock.c | 55 #include "v7fs_inode.h" 253 v7fs_datablock_foreach(struct v7fs_self *fs, struct v7fs_inode *p, 360 v7fs_datablock_last(struct v7fs_self *fs, struct v7fs_inode *inode, 394 v7fs_datablock_expand(struct v7fs_self *fs, struct v7fs_inode *inode, size_t sz) 409 struct v7fs_inode backup = *inode; 547 v7fs_datablock_contract(struct v7fs_self *fs, struct v7fs_inode *inode, 705 struct v7fs_inode *inode)
|
v7fs_vfsops.c | 61 #include "v7fs_inode.h" 434 struct v7fs_inode inode;
|
/src/sbin/fsck_v7fs/ |
pathname.c | 45 #include "v7fs_inode.h" 80 struct v7fs_inode *parent; 101 struct v7fs_inode inode; 123 lookup_child_from_dir(struct v7fs_self *fs, struct v7fs_inode *p, bool print) 141 struct v7fs_inode *p, v7fs_ino_t ino) 199 lookup_parent_from_dir(struct v7fs_self *fs, struct v7fs_inode *p) 210 pathname_check_file(struct v7fs_self *fs, struct v7fs_inode *p, v7fs_ino_t ino) 213 struct v7fs_inode parent_inode; 232 pathname_check_dir(struct v7fs_self *fs, struct v7fs_inode *p, v7fs_ino_t ino) 235 struct v7fs_inode parent_inode [all...] |
fsck_v7fs.h | 77 extern struct v7fs_inode lost_and_found;
|
main.c | 46 #include "v7fs_inode.h" 53 static int make_lost_and_found(struct v7fs_self *, struct v7fs_inode *); 55 struct v7fs_inode lost_and_found; 223 make_lost_and_found(struct v7fs_self *fs, struct v7fs_inode *p) 225 struct v7fs_inode root_inode;
|
Makefile | 8 v7fs_datablock.c v7fs_io.c v7fs_superblock.c v7fs_inode.c v7fs_file.c \
|
datablock.c | 43 #include "v7fs_inode.h" 95 inode_subr(struct v7fs_self *fs, void *ctx, struct v7fs_inode *p, 154 loopover_j(struct v7fs_self *fs, void *ctx, struct v7fs_inode *p, 189 loopover_i(struct v7fs_self *fs, void *ctx, struct v7fs_inode *inode, 239 replace_block_direct(struct v7fs_self *fs, struct v7fs_inode *p, int dupidx, 321 do_replace(struct v7fs_self *fs, struct v7fs_inode *p, v7fs_daddr_t dupblk, 372 struct v7fs_inode inode;
|
inode.c | 43 #include "v7fs_inode.h" 99 v7fs_inode_check(struct v7fs_self *fs, struct v7fs_inode *p, v7fs_ino_t ino) 118 ilistcheck_subr(struct v7fs_self *fs, void *ctx, struct v7fs_inode *p,
|
/src/sys/rump/fs/lib/libv7fs/ |
Makefile | 9 SRCS= v7fs_endian.c v7fs_superblock.c v7fs_inode.c v7fs_dirent.c \
|
/src/usr.sbin/makefs/v7fs/ |
v7fs_populate.c | 56 #include "v7fs_inode.h" 81 allocate(struct v7fs_self *fs, struct v7fs_inode *parent_inode, fsnode *node, 82 dev_t dev, struct v7fs_inode *inode) 133 file_copy(struct v7fs_self *fs, struct v7fs_inode *parent_inode, fsnode *node, 136 struct v7fs_inode inode; 194 populate_walk(struct v7fs_self *fs, struct v7fs_inode *parent_inode, 200 struct v7fs_inode inode; 263 struct v7fs_inode root_inode;
|
/src/sbin/newfs_v7fs/ |
Makefile | 8 SRCS= newfs_v7fs.c main.c v7fs_endian.c v7fs_superblock.c v7fs_inode.c \
|
main.c | 52 #include "v7fs_inode.h" 101 struct v7fs_inode inode;
|
/src/sys/modules/v7fs/ |
Makefile | 12 SRCS+= v7fs_inode.c
|