static int bfs_move_block(unsigned long from, unsigned long to, kdev_t dev)
@@ -77,7 +77,8 @@
/* if the file is not empty and the requested block is within the range
of blocks allocated for this file, we can grant it */
if (inode->i_size && phys <= inode->iu_eblock) {
- dprintf("c=%d, b=%08lx, phys=%08lx (interim block granted)\n", create, block, phys);
+ dprintf("c=%d, b=%08lx, phys=%08lx (interim block granted)\n",
+ create, block, phys);
bh_result->b_dev = inode->i_dev;
bh_result->b_blocknr = phys;
bh_result->b_state |= (1UL << BH_Mapped);
@@ -90,7 +91,8 @@
/* if the last data block for this file is the last allocated block, we can
extend the file trivially, without moving it anywhere */
if (inode->iu_eblock == s->su_lf_eblk) {
- dprintf("c=%d, b=%08lx, phys=%08lx (simple extension)\n", create, block, phys);
+ dprintf("c=%d, b=%08lx, phys=%08lx (simple extension)\n",
+ create, block, phys);
bh_result->b_dev = inode->i_dev;
bh_result->b_blocknr = phys;
bh_result->b_state |= (1UL << BH_Mapped);
@@ -104,9 +106,10 @@
/* Ok, we have to move this entire file to the next free block */
next_free_block = s->su_lf_eblk + 1;
if (inode->iu_sblock) { /* if data starts on block 0 then there is no data */
- err = bfs_move_blocks(inode->i_dev, inode->iu_sblock, inode->iu_eblock, next_free_block);
+ err = bfs_move_blocks(inode->i_dev, inode->iu_sblock,
+ inode->iu_eblock, next_free_block);
if (err) {
- dprintf("failed to move ino=%08lx -> possible fs corruption\n", inode->i_ino);
+ dprintf("failed to move ino=%08lx -> fs corruption\n", inode->i_ino);
goto out;
}
} else
@@ -126,26 +129,30 @@