Home | History | Annotate | Download | only in e2fsck

Lines Matching refs:block

2  * ehandler.c --- handle bad block errors which come up during the
24 unsigned long block,
40 * If more than one block was read, try reading each block
46 for (i=0; i < count; i++, p += channel->block_size, block++) {
47 error = io_channel_read_blk64(channel, block,
55 printf(_("Error reading block %lu (%s) while %s. "), block,
58 printf(_("Error reading block %lu (%s). "), block,
62 /* Don't rewrite a block past the end of the FS. */
63 if (block >= ext2fs_blocks_count(fs->super))
68 io_channel_write_blk64(channel, block, count, data);
76 unsigned long block,
93 * If more than one block was written, try writing each block
99 for (i=0; i < count; i++, p += channel->block_size, block++) {
100 error = io_channel_write_blk64(channel, block,
109 printf(_("Error writing block %lu (%s) while %s. "), block,
112 printf(_("Error writing block %lu (%s). "), block,