Add stable tags before pushing to Linus
[ext4-patch-queue.git] / fix-incorrect-indentation-of-if-statement
blob2ab8101ad47b1ce25ce18e427d4357fd64f7b9ef
1 ext4: fix incorrect indentation of if statement
3 From: Colin Ian King <colin.king@canonical.com>
5 The indentation is incorrect and spaces need replacing with a tab
6 on the if statement.
8 Cleans up smatch warning:
9 fs/ext4/namei.c:3220 ext4_link() warn: inconsistent indenting
11 Signed-off-by: Colin Ian King <colin.king@canonical.com>
12 Signed-off-by: Theodore Ts'o <tytso@mit.edu>
13 Reviewed-by: Jan Kara <jack@suse.cz>
14 ---
15  fs/ext4/namei.c | 6 +++---
16  1 file changed, 3 insertions(+), 3 deletions(-)
18 diff --git a/fs/ext4/namei.c b/fs/ext4/namei.c
19 index e750d68fbcb5..c5696a93a3a6 100644
20 --- a/fs/ext4/namei.c
21 +++ b/fs/ext4/namei.c
22 @@ -3221,9 +3221,9 @@ static int ext4_link(struct dentry *old_dentry,
23         if (err)
24                 return err;
26 -       if ((ext4_test_inode_flag(dir, EXT4_INODE_PROJINHERIT)) &&
27 -          (!projid_eq(EXT4_I(dir)->i_projid,
28 -                      EXT4_I(old_dentry->d_inode)->i_projid)))
29 +       if ((ext4_test_inode_flag(dir, EXT4_INODE_PROJINHERIT)) &&
30 +           (!projid_eq(EXT4_I(dir)->i_projid,
31 +                       EXT4_I(old_dentry->d_inode)->i_projid)))
32                 return -EXDEV;
34         err = dquot_initialize(dir);