Lines Matching defs:ino
87 v7fs_inode_number_sanity(const struct v7fs_superblock *sb, v7fs_ino_t ino)
90 if (ino < V7FS_ROOT_INODE || ((size_t)ino >= V7FS_MAX_INODE(sb))) {
91 DPRINTF("invalid inode#%d (%d-%zu)\n", ino,
100 v7fs_inode_allocate(struct v7fs_self *fs, v7fs_ino_t *ino)
105 *ino = 0;
130 *ino = inode_number;
139 v7fs_inode_deallocate(struct v7fs_self *fs, v7fs_ino_t ino)
145 inode.inode_number = ino;
151 sb->freeinode[sb->nfreeinode++] = ino;
252 v7fs_ino_t ino = mem->inode_number;
258 if (v7fs_inode_inquire_disk_location(fs, ino, &blk, &ofs) != 0)