aboutsummaryrefslogtreecommitdiffstats
path: root/fs/ext4/xattr.c
diff options
context:
space:
mode:
authorLukas Czerner <lczerner@redhat.com>2014-05-12 12:55:07 -0400
committerTheodore Ts'o <tytso@mit.edu>2014-05-12 12:55:07 -0400
commitc8b459f492cbe8be26d8eac0489ef627ed355947 (patch)
treeb8796e01968b36a0eb607cc08839a8fe921b7dcd /fs/ext4/xattr.c
parent029b10c5a8d9e9db528eea66f5728ccca56c2f27 (diff)
ext4: remove unnecessary double parentheses
Signed-off-by: Lukas Czerner <lczerner@redhat.com> Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
Diffstat (limited to 'fs/ext4/xattr.c')
-rw-r--r--fs/ext4/xattr.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ext4/xattr.c b/fs/ext4/xattr.c
index c6ae6fab99be..3a5ac7cc4819 100644
--- a/fs/ext4/xattr.c
+++ b/fs/ext4/xattr.c
@@ -899,7 +899,7 @@ inserted:
899 * take i_data_sem because we will test 899 * take i_data_sem because we will test
900 * i_delalloc_reserved_flag in ext4_mb_new_blocks 900 * i_delalloc_reserved_flag in ext4_mb_new_blocks
901 */ 901 */
902 down_read((&EXT4_I(inode)->i_data_sem)); 902 down_read(&EXT4_I(inode)->i_data_sem);
903 block = ext4_new_meta_blocks(handle, inode, goal, 0, 903 block = ext4_new_meta_blocks(handle, inode, goal, 0,
904 NULL, &error); 904 NULL, &error);
905 up_read((&EXT4_I(inode)->i_data_sem)); 905 up_read((&EXT4_I(inode)->i_data_sem));