From: Roel Kluin Date: Mon, 7 Dec 2009 15:38:16 +0000 (-0500) Subject: ext4: Return the PTR_ERR of the correct pointer in setup_new_group_blocks() X-Git-Tag: firefly_0821_release~11625^2~645 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=66c3a718335ccd37ac14c4f0f2d0a7551af562ed;p=firefly-linux-kernel-4.4.55.git ext4: Return the PTR_ERR of the correct pointer in setup_new_group_blocks() (cherry picked from commit c09eef305dd43846360944ad072f051f964fa383) Signed-off-by: Roel Kluin Signed-off-by: "Theodore Ts'o" Signed-off-by: Greg Kroah-Hartman --- diff --git a/fs/ext4/resize.c b/fs/ext4/resize.c index 3cfc343c41b5..3b2c5541d8a6 100644 --- a/fs/ext4/resize.c +++ b/fs/ext4/resize.c @@ -247,7 +247,7 @@ static int setup_new_group_blocks(struct super_block *sb, goto exit_bh; if (IS_ERR(gdb = bclean(handle, sb, block))) { - err = PTR_ERR(bh); + err = PTR_ERR(gdb); goto exit_bh; } ext4_handle_dirty_metadata(handle, NULL, gdb);