Bug 185444 - kernel dm: missing bdput
Summary: kernel dm: missing bdput
Keywords:
Status: CLOSED ERRATA
Alias: None
Product: Red Hat Enterprise Linux 4
Classification: Red Hat
Component: kernel
Version: 4.0
Hardware: All
OS: Linux
medium
medium
Target Milestone: ---
: ---
Assignee: Alasdair Kergon
QA Contact: Brian Brock
URL:
Whiteboard:
Depends On:
Blocks: 181409
TreeView+ depends on / blocked
 
Reported: 2006-03-14 20:43 UTC by Alasdair Kergon
Modified: 2007-11-30 22:07 UTC (History)
2 users (show)

Fixed In Version: RHSA-2006-0575
Doc Type: Bug Fix
Doc Text:
Clone Of:
Environment:
Last Closed: 2006-08-10 22:40:43 UTC
Target Upstream Version:
Embargoed:


Attachments (Terms of Use)
Regression test for this bug (156 bytes, application/x-shellscript)
2006-03-20 15:36 UTC, Jun'ichi NOMURA
no flags Details


Links
System ID Private Priority Status Summary Last Updated
Red Hat Product Errata RHSA-2006:0575 0 normal SHIPPED_LIVE Important: Updated kernel packages available for Red Hat Enterprise Linux 4 Update 4 2006-08-10 04:00:00 UTC

Description Alasdair Kergon 2006-03-14 20:43:45 UTC
From: Jun'ichi Nomura <j-nomura.nec.com>
 
If we hold a bdev inode for a suspended device
when freeing it, we must call bdput first.
 
Signed-off-by: Jun'ichi Nomura <j-nomura.nec.com>
Signed-Off-By: Alasdair G Kergon <agk>
 
Index: linux-2.6.16-rc1/drivers/md/dm.c
===================================================================
--- linux-2.6.16-rc1.orig/drivers/md/dm.c       2006-03-01 21:40:30.000000000 +0000
+++ linux-2.6.16-rc1/drivers/md/dm.c    2006-03-01 21:42:55.000000000 +0000
@@ -849,6 +849,10 @@ static struct mapped_device *alloc_dev(u
  
 static void free_dev(struct mapped_device *md)
 {
+       if (md->suspended_bdev) {
+               thaw_bdev(md->suspended_bdev, NULL);
+               bdput(md->suspended_bdev);
+       }
        free_minor(md->disk->first_minor);
        mempool_destroy(md->tio_pool);
        mempool_destroy(md->io_pool);

Comment 3 Jun'ichi NOMURA 2006-03-20 15:36:22 UTC
Created attachment 126349 [details]
Regression test for this bug

Regression test for this bug.

If the bug is fixed, you see 'PASS'.
Otherwise, the test never finishes and dmsetup will hang
with backtrace like below:

crash> bt 32540
PID: 32540  TASK: e00000017ca98000  CPU: 0   COMMAND: "dmsetup"
 #0 [BSP:e00000017ca992a8] context_switch at a000000100068500
 #1 [BSP:e00000017ca99188] schedule at a000000100586fc0
 #2 [BSP:e00000017ca99128] __down at a0000001005867f0
 #3 [BSP:e00000017ca990e8] freeze_bdev at a000000100123960
 #4 [BSP:e00000017ca99098] dm_suspend at a0000002003e0e40
 #5 [BSP:e00000017ca99048] dev_suspend at a0000002003ea760
 #6 [BSP:e00000017ca98fe0] ctl_ioctl at a0000002003eda60
 #7 [BSP:e00000017ca98f50] sys_ioctl at a00000010014f280
 #8 [BSP:e00000017ca98f50] ia64_ret_from_syscall at a00000010000f3e0

Comment 4 Jason Baron 2006-03-28 17:43:39 UTC
committed in stream u4 build 34.9. A test kernel with this patch is available
from http://people.redhat.com/~jbaron/rhel4/

Comment 5 Jeff Burke 2006-03-30 16:06:48 UTC
This testcase had been add to RHTS /kernel/filesystems/185444

Comment 9 Red Hat Bugzilla 2006-08-10 22:40:43 UTC
An advisory has been issued which should help the problem
described in this bug report. This report is therefore being
closed with a resolution of ERRATA. For more information
on the solution and/or where to find the updated files,
please follow the link below. You may reopen this bug report
if the solution does not work for you.

http://rhn.redhat.com/errata/RHSA-2006-0575.html



Note You need to log in before you can comment on or make changes to this bug.