diff options
author | Chuck Ebbert <cebbert@redhat.com> | 2009-06-02 08:07:53 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2009-06-15 09:40:35 -0700 |
commit | 54eefd82c70ebe77f72b7891b7e1538284948c33 (patch) | |
tree | 44388ab1c0edbb008530b18d2c9a0d4d585fe4c5 /fs | |
parent | d0df1b653152d0b502b00cc04623b7950626e5d6 (diff) | |
download | linux-rt-54eefd82c70ebe77f72b7891b7e1538284948c33.tar.gz |
ext4: really print the find_group_flex fallback warning only once
(cherry picked from commit 6b82f3cb2d480b7714eb0ff61aee99c22160389e)
Missing braces caused the warning to print more than once.
Signed-Off-By: Chuck Ebbert <cebbert@redhat.com>
Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/ext4/ialloc.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/fs/ext4/ialloc.c b/fs/ext4/ialloc.c index befd95e1f1af..345cba1d65bc 100644 --- a/fs/ext4/ialloc.c +++ b/fs/ext4/ialloc.c @@ -720,11 +720,12 @@ struct inode *ext4_new_inode(handle_t *handle, struct inode *dir, int mode) ret2 = find_group_flex(sb, dir, &group); if (ret2 == -1) { ret2 = find_group_other(sb, dir, &group); - if (ret2 == 0 && once) + if (ret2 == 0 && once) { once = 0; printk(KERN_NOTICE "ext4: find_group_flex " "failed, fallback succeeded dir %lu\n", dir->i_ino); + } } goto got_group; } |