I'm going to include this patch as well, but with a slightly different changelog description, since I think making sure the group descriptor is initialized addresses the root cause of the problem. This still saves a small amount of code space, so it's still a good patch, but it shouldn't be strictly speaking necessary. - Ted commit 030d677ef688dea36245bdeaab74826aece02ee8 Author: Theodore Ts'o <tytso@xxxxxxx> Date: Mon Jan 26 19:20:18 2009 -0500 ext4: remove call to ext4_group_desc() in ext4_group_used_meta_blocks() The static function ext4_group_used_meta_blocks() only has one caller, who already has access to the block group's group descriptor. So it's better to have ext4_init_block_bitmap() pass the group descriptor to ext4_group_used_meta_blocks(), so it doesn't need to call ext4_group_desc(). Previously this function did not check if ext4_group_desc() returned NULL due to an error, potentially causing a kernel OOPS report. This avoids the issue entirely. Signed-off-by: Thadeu Lima de Souza Cascardo <cascardo@xxxxxxxxxxxxxx> Signed-off-by: "Theodore Ts'o" <tytso@xxxxxxx> -- To unsubscribe from this list: send the line "unsubscribe linux-ext4" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html