From 27160c293115ac4c706d6597d683b8fe5c7bb887 Mon Sep 17 00:00:00 2001 From: Andreas Gruenbacher Date: Fri, 14 Jan 2005 23:36:33 -0800 Subject: [PATCH] ext3/EA: Ext3: factor our common xattr code; unnecessary lock The ext3_xattr_set_handle2 and ext3_xattr_delete_inode functions contain duplicate code to decrease the reference count of an xattr block. Move this to a separate function. Also we know we have exclusive access to the inode in ext3_xattr_delete_inode; there is no need to grab the xattr_sem lock. Signed-off-by: Andreas Gruenbacher Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- fs/ext3/xattr.c | 97 ++++++++++++++++++++++++--------------------------------- 1 file changed, 40 insertions(+), 57 deletions(-) diff --git a/fs/ext3/xattr.c b/fs/ext3/xattr.c index aef732e4f7752f..115df27013a315 100644 --- a/fs/ext3/xattr.c +++ b/fs/ext3/xattr.c @@ -355,6 +355,41 @@ static void ext3_xattr_update_super_block(handle_t *handle, unlock_super(sb); } +/* + * Release the xattr block BH: If the reference count is > 1, decrement + * it; otherwise free the block. + */ +static void +ext3_xattr_release_block(handle_t *handle, struct inode *inode, + struct buffer_head *bh) +{ + struct mb_cache_entry *ce = NULL; + + ce = mb_cache_entry_get(ext3_xattr_cache, bh->b_bdev, bh->b_blocknr); + if (HDR(bh)->h_refcount == cpu_to_le32(1)) { + ea_bdebug(bh, "freeing"); + if (ce) + mb_cache_entry_free(ce); + ext3_free_blocks(handle, inode, bh->b_blocknr, 1); + get_bh(bh); + ext3_forget(handle, 1, inode, bh, bh->b_blocknr); + } else { + if (ext3_journal_get_write_access(handle, bh) == 0) { + lock_buffer(bh); + HDR(bh)->h_refcount = cpu_to_le32( + le32_to_cpu(HDR(bh)->h_refcount) - 1); + ext3_journal_dirty_metadata(handle, bh); + if (IS_SYNC(inode)) + handle->h_sync = 1; + DQUOT_FREE_BLOCK(inode, 1); + unlock_buffer(bh); + ea_bdebug(bh, "refcount now=%d", + le32_to_cpu(HDR(bh)->h_refcount) - 1); + } + if (ce) + mb_cache_entry_release(ce); + } +} /* * ext3_xattr_set_handle() * @@ -733,37 +768,8 @@ getblk_failed: /* * If there was an old block, and we are no longer using it, * release the old block. - */ - ce = mb_cache_entry_get(ext3_xattr_cache, old_bh->b_bdev, - old_bh->b_blocknr); - if (HDR(old_bh)->h_refcount == cpu_to_le32(1)) { - /* Free the old block. */ - ea_bdebug(old_bh, "freeing"); - ext3_free_blocks(handle, inode, old_bh->b_blocknr, 1); - - /* ext3_forget() calls bforget() for us, but we - let our caller release old_bh, so we need to - duplicate the handle before. */ - get_bh(old_bh); - ext3_forget(handle, 1, inode, old_bh,old_bh->b_blocknr); - if (ce) { - mb_cache_entry_free(ce); - ce = NULL; - } - } else { - error = ext3_journal_get_write_access(handle, old_bh); - if (error) - goto cleanup; - /* Decrement the refcount only. */ - lock_buffer(old_bh); - HDR(old_bh)->h_refcount = cpu_to_le32( - le32_to_cpu(HDR(old_bh)->h_refcount) - 1); - DQUOT_FREE_BLOCK(inode, 1); - ext3_journal_dirty_metadata(handle, old_bh); - ea_bdebug(old_bh, "refcount now=%d", - le32_to_cpu(HDR(old_bh)->h_refcount)); - unlock_buffer(old_bh); - } + */ + ext3_xattr_release_block(handle, inode, old_bh); } cleanup: @@ -813,13 +819,13 @@ retry: * ext3_xattr_delete_inode() * * Free extended attribute resources associated with this inode. This - * is called immediately before an inode is freed. + * is called immediately before an inode is freed. We have exclusive + * access to the inode. */ void ext3_xattr_delete_inode(handle_t *handle, struct inode *inode) { struct buffer_head *bh = NULL; - struct mb_cache_entry *ce = NULL; down_write(&EXT3_I(inode)->xattr_sem); if (!EXT3_I(inode)->i_file_acl) @@ -838,33 +844,10 @@ ext3_xattr_delete_inode(handle_t *handle, struct inode *inode) EXT3_I(inode)->i_file_acl); goto cleanup; } - ce = mb_cache_entry_get(ext3_xattr_cache, bh->b_bdev, bh->b_blocknr); - if (HDR(bh)->h_refcount == cpu_to_le32(1)) { - if (ce) { - mb_cache_entry_free(ce); - ce = NULL; - } - ext3_free_blocks(handle, inode, EXT3_I(inode)->i_file_acl, 1); - get_bh(bh); - ext3_forget(handle, 1, inode, bh, EXT3_I(inode)->i_file_acl); - } else { - if (ext3_journal_get_write_access(handle, bh) != 0) - goto cleanup; - lock_buffer(bh); - HDR(bh)->h_refcount = cpu_to_le32( - le32_to_cpu(HDR(bh)->h_refcount) - 1); - ext3_journal_dirty_metadata(handle, bh); - if (IS_SYNC(inode)) - handle->h_sync = 1; - DQUOT_FREE_BLOCK(inode, 1); - unlock_buffer(bh); - } - ea_bdebug(bh, "refcount now=%d", le32_to_cpu(HDR(bh)->h_refcount) - 1); + ext3_xattr_release_block(handle, inode, bh); EXT3_I(inode)->i_file_acl = 0; cleanup: - if (ce) - mb_cache_entry_release(ce); brelse(bh); up_write(&EXT3_I(inode)->xattr_sem); } -- cgit 1.2.3-korg