Home | History | Annotate | Download | only in e2fsck

Lines Matching refs:block

146 	char *			block;
174 * First, find a free block
188 * Now let's create the actual data block for the inode
191 &block);
199 pctx.errcode = ext2fs_write_dir_block(fs, blk, block);
206 ext2fs_free_mem(&block);
361 char * block;
404 * Read the inode and block bitmaps in; we'll be messing with
410 * First, find a free block
436 * Now let's create the actual data block for the inode
438 retval = ext2fs_new_dir_block(fs, ino, EXT2_ROOT_INO, &block);
445 retval = ext2fs_write_dir_block(fs, blk, block);
446 ext2fs_free_mem(&block);
696 char *block;
718 retval = ext2fs_new_dir_block(fs, 0, 0, &block);
724 retval = ext2fs_write_dir_block(fs, new_blk, block);
726 retval = ext2fs_get_mem(fs->blocksize, &block);
731 memset(block, 0, fs->blocksize);
732 retval = io_channel_write_blk(fs->io, new_blk, 1, block);
738 ext2fs_free_mem(&block);
762 * Read the inode and block bitmaps in; we'll be messing with
785 * Update the size and block count fields in the inode.