Skip to content
Snippets Groups Projects
Commit a5ed9803 authored by Johann Lombardi's avatar Johann Lombardi
Browse files

Branch b1_4

b=14493
i=adilger
i=johann

Patch from bzzz.

Kernel BUG at ... ldiskfs/ldiskfs/mballoc.c:3853
Removing the underlying device (e.g. via a SCSI rescan) can cause a
kernel BUG in ldiskfs_mb_discard_inode_preallocations().
parent e4bc1252
No related branches found
No related tags found
No related merge requests found
tbd Sun Microsystems, Inc.
* version 3.0.5
Severity : normal
Bugzilla : 14493
Description: Kernel BUG at ... ldiskfs/ldiskfs/mballoc.c:3853
Details : Removing the underlying device (e.g. via a SCSI rescan) can cause a
kernel BUG in ldiskfs_mb_discard_inode_preallocations().
--------------------------------------------------------------------------------
2008-01-11 Sun Microsystems, Inc.
......
......@@ -4030,15 +4030,15 @@ Index: linux-2.6.9-full/fs/ext3/mballoc.c
+ BUG_ON(err != 0); /* error handling here */
+
+ bitmap_bh = read_block_bitmap(sb, group);
+ if (bitmap_bh == NULL) {
+ /* error handling here */
+ ext3_mb_release_desc(&e3b);
+ BUG_ON(bitmap_bh == NULL);
+ }
+
+ ext3_lock_group(sb, group);
+ list_del_rcu(&pa->pa_group_list);
+ ext3_mb_release_inode_pa(&e3b, bitmap_bh, pa);
+
+ /* can be NULL due to IO error, at worst
+ * we leave some free blocks unavailable
+ * do not go RO - no need for */
+ if (bitmap_bh != NULL)
+ ext3_mb_release_inode_pa(&e3b, bitmap_bh, pa);
+ ext3_unlock_group(sb, group);
+
+ ext3_mb_release_desc(&e3b);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment