diff options
-rw-r--r-- | ext2fs/getblk.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/ext2fs/getblk.c b/ext2fs/getblk.c index 8f10e291..b016874c 100644 --- a/ext2fs/getblk.c +++ b/ext2fs/getblk.c @@ -77,7 +77,7 @@ ext2_alloc_block (struct node *node, unsigned long goal) ext2_debug ("preallocation hit (%lu/%lu).\n", ++alloc_hits, ++alloc_attempts); - bh = baddr(result); + bh = bptr(result); memset (bh, 0, block_size); } else @@ -110,7 +110,7 @@ inode_getblk (struct node *node, int nr, int create, int new_block, char **buf) block = node->dn->info.i_data[nr]; if (block) { - *buf = baddr(block); + *buf = bptr(block); return 0; } @@ -144,7 +144,7 @@ inode_getblk (struct node *node, int nr, int create, int new_block, char **buf) if (!block) return EIO; - *buf = baddr(block); + *buf = bptr(block); node->dn->info.i_data[nr] = block; node->dn->info.i_next_alloc_block = new_block; @@ -172,7 +172,7 @@ block_getblk (struct node *node, block = ((u32 *)bh)[nr]; if (block) { - *buf = baddr (block); + *buf = bptr (block); return 0; } @@ -199,7 +199,7 @@ block_getblk (struct node *node, if (!block) return EIO; /* XXX? */ - *buf = baddr (block); + *buf = bptr (block); ((u32 *)bh)[nr] = block; if (diskfs_synchronous || node->dn->info.i_osync) |