diff options
author | Miles Bader <miles@gnu.org> | 1995-04-16 20:32:43 +0000 |
---|---|---|
committer | Miles Bader <miles@gnu.org> | 1995-04-16 20:32:43 +0000 |
commit | 623fef6d952f4978e24e23c3c0219946c754f30b (patch) | |
tree | c812c19eb20a9fd2ee93459f92281c6a82d69fe0 | |
parent | a8f2ec0d2f475c541aede30170cc44975b1504e4 (diff) |
Formerly getblk.c.~5~
-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) |