aboutsummaryrefslogtreecommitdiffstats
path: root/fs/ufs/balloc.c
diff options
context:
space:
mode:
authorEvgeniy Dushistov <dushistov@mail.ru>2006-06-25 08:47:28 -0400
committerLinus Torvalds <torvalds@g5.osdl.org>2006-06-25 13:01:04 -0400
commitf391475812ba39afa322c835217ffe936f5e754a (patch)
treed5bf0a5ec79b0bebe87988734c316b18360f42a8 /fs/ufs/balloc.c
parent96710b29e05f3b470bc4206366021b56e28d5208 (diff)
[PATCH] ufs: missed brelse and wrong baseblk
This patch fixes two bugs, which introduced by previous patches: 1) Missed "brelse" 2) Sometimes "baseblk" may be wrongly calculated, if i_size is equal to zero, which lead infinite cycle in "mpage_writepages". Signed-off-by: Evgeniy Dushistov <dushistov@mail.ru> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'fs/ufs/balloc.c')
-rw-r--r--fs/ufs/balloc.c12
1 files changed, 5 insertions, 7 deletions
diff --git a/fs/ufs/balloc.c b/fs/ufs/balloc.c
index ac709e70f646..99d881812ad8 100644
--- a/fs/ufs/balloc.c
+++ b/fs/ufs/balloc.c
@@ -269,20 +269,17 @@ out:
269 * We can come here from ufs_writepage or ufs_prepare_write, 269 * We can come here from ufs_writepage or ufs_prepare_write,
270 * locked_page is argument of these functions, so we already lock it. 270 * locked_page is argument of these functions, so we already lock it.
271 */ 271 */
272static void ufs_change_blocknr(struct inode *inode, unsigned int count, 272static void ufs_change_blocknr(struct inode *inode, unsigned int baseblk,
273 unsigned int oldb, unsigned int newb, 273 unsigned int count, unsigned int oldb,
274 struct page *locked_page) 274 unsigned int newb, struct page *locked_page)
275{ 275{
276 unsigned int blk_per_page = 1 << (PAGE_CACHE_SHIFT - inode->i_blkbits); 276 unsigned int blk_per_page = 1 << (PAGE_CACHE_SHIFT - inode->i_blkbits);
277 sector_t baseblk;
278 struct address_space *mapping = inode->i_mapping; 277 struct address_space *mapping = inode->i_mapping;
279 pgoff_t index, cur_index = locked_page->index; 278 pgoff_t index, cur_index = locked_page->index;
280 unsigned int i, j; 279 unsigned int i, j;
281 struct page *page; 280 struct page *page;
282 struct buffer_head *head, *bh; 281 struct buffer_head *head, *bh;
283 282
284 baseblk = ((i_size_read(inode) - 1) >> inode->i_blkbits) + 1 - count;
285
286 UFSD("ENTER, ino %lu, count %u, oldb %u, newb %u\n", 283 UFSD("ENTER, ino %lu, count %u, oldb %u, newb %u\n",
287 inode->i_ino, count, oldb, newb); 284 inode->i_ino, count, oldb, newb);
288 285
@@ -439,7 +436,8 @@ unsigned ufs_new_fragments(struct inode * inode, __fs32 * p, unsigned fragment,
439 } 436 }
440 result = ufs_alloc_fragments (inode, cgno, goal, request, err); 437 result = ufs_alloc_fragments (inode, cgno, goal, request, err);
441 if (result) { 438 if (result) {
442 ufs_change_blocknr(inode, oldcount, tmp, result, locked_page); 439 ufs_change_blocknr(inode, fragment - oldcount, oldcount, tmp,
440 result, locked_page);
443 441
444 *p = cpu_to_fs32(sb, result); 442 *p = cpu_to_fs32(sb, result);
445 *err = 0; 443 *err = 0;