Home | History | Annotate | Download | only in v7fs

Lines Matching defs:stat

67 	struct v7fs_stat *stat = &fs->stat;
69 stat->total_blocks = sb->volume_size - sb->datablock_start_sector;
70 stat->total_inode = V7FS_MAX_INODE(sb);
71 stat->free_inode = sb->total_freeinode;
72 stat->free_blocks = sb->total_freeblock;
73 stat->total_files = stat->total_inode - sb->total_freeinode - 1;
75 DPRINTF("block %d/%d, inode %d/%d\n", stat->free_blocks,
76 stat->total_blocks, stat->free_inode, stat->total_inode);