dect
/
linux-2.6
Archived
13
0
Fork 0

jbd2: don't use __GFP_NOFAIL in journal_init_common()

It triggers the warning in get_page_from_freelist(), and it isn't
appropriate to use __GFP_NOFAIL here anyway.

Addresses http://bugzilla.kernel.org/show_bug.cgi?id=14843

Reported-by: Christian Casteyde <casteyde.christian@free.fr>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
This commit is contained in:
Andrew Morton 2009-12-23 08:05:15 -05:00 committed by Theodore Ts'o
parent c8afb44682
commit 3ebfdf885a
1 changed files with 1 additions and 1 deletions

View File

@ -814,7 +814,7 @@ static journal_t * journal_init_common (void)
journal_t *journal;
int err;
journal = kzalloc(sizeof(*journal), GFP_KERNEL|__GFP_NOFAIL);
journal = kzalloc(sizeof(*journal), GFP_KERNEL);
if (!journal)
goto fail;