projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8dde050
)
[PATCH] dm: missing bdput/thaw_bdev at removal
author
Jun'ichi Nomura
<
[email protected]
>
Fri, 24 Feb 2006 21:04:24 +0000
(13:04 -0800)
committer
Linus Torvalds
<
[email protected]
>
Fri, 24 Feb 2006 22:31:39 +0000
(14:31 -0800)
Need to unfreeze and release bdev otherwise the bdev inode with
inconsistent state is reused later and cause problem.
Signed-off-by: Jun'ichi Nomura <
[email protected]
>
Acked-by: Alasdair G Kergon <
[email protected]
>
Cc: <
[email protected]
>
Signed-off-by: Andrew Morton <
[email protected]
>
Signed-off-by: Linus Torvalds <
[email protected]
>
drivers/md/dm.c
patch
|
blob
|
history
diff --git
a/drivers/md/dm.c
b/drivers/md/dm.c
index e9adeb9d172fa80c0f6140a6fcf4a034f4f0fdca..dad9e403d59de3ac4732f625d4c672f74647e925 100644
(file)
--- a/
drivers/md/dm.c
+++ b/
drivers/md/dm.c
@@
-849,6
+849,10
@@
static struct mapped_device *alloc_dev(unsigned int minor, int persistent)
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);