Home | History | Annotate | Download | only in e2fsck

Lines Matching refs:block

159 	char *			block;
187 * First, find a free block
201 * Now let's create the actual data block for the inode
204 &block);
212 pctx.errcode = ext2fs_write_dir_block(fs, blk, block);
219 ext2fs_free_mem(&block);
374 char * block;
417 * Read the inode and block bitmaps in; we'll be messing with
423 * First, find a free block
449 * Now let's create the actual data block for the inode
451 retval = ext2fs_new_dir_block(fs, ino, EXT2_ROOT_INO, &block);
458 retval = ext2fs_write_dir_block(fs, blk, block);
459 ext2fs_free_mem(&block);
709 char *block;
731 retval = ext2fs_new_dir_block(fs, 0, 0, &block);
737 retval = ext2fs_write_dir_block(fs, new_blk, block);
739 retval = ext2fs_get_mem(fs->blocksize, &block);
744 memset(block, 0, fs->blocksize);
745 retval = io_channel_write_blk(fs->io, new_blk, 1, block);
751 ext2fs_free_mem(&block);
775 * Read the inode and block bitmaps in; we'll be messing with
798 * Update the size and block count fields in the inode.