From: David Sterba Date: Tue, 24 Feb 2015 18:07:26 +0000 (+0100) Subject: btrfs: remove shadowing variables in __btrfs_buffered_write X-Git-Url: http://git.hungrycats.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a80ae9b39e85457093e5ebcf6bc389e505e3d3e0;p=linux btrfs: remove shadowing variables in __btrfs_buffered_write There are lockstart and lockend defined in the function and not used after their duplicate definition scope ends, it's safe to reuse them. Signed-off-by: David Sterba (cherry picked from commit f64c7b12f86c638f13e19de08eeb8cf888dff8f6) --- diff --git a/fs/btrfs/file.c b/fs/btrfs/file.c index 186406bba066..9f323dda7bb0 100644 --- a/fs/btrfs/file.c +++ b/fs/btrfs/file.c @@ -1631,8 +1631,8 @@ again: btrfs_end_write_no_snapshoting(root); if (only_release_metadata && copied > 0) { - u64 lockstart = round_down(pos, root->sectorsize); - u64 lockend = lockstart + + lockstart = round_down(pos, root->sectorsize); + lockend = lockstart + (dirty_pages << PAGE_CACHE_SHIFT) - 1; set_extent_bit(&BTRFS_I(inode)->io_tree, lockstart,