diff options
author | Lukas Czerner <lczerner@redhat.com> | 2014-05-12 12:55:07 -0400 |
---|---|---|
committer | Theodore Ts'o <tytso@mit.edu> | 2014-05-12 12:55:07 -0400 |
commit | c8b459f492cbe8be26d8eac0489ef627ed355947 (patch) | |
tree | b8796e01968b36a0eb607cc08839a8fe921b7dcd /fs/ext4/xattr.c | |
parent | 029b10c5a8d9e9db528eea66f5728ccca56c2f27 (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.c | 2 |
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)); |