summaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorNeilBrown2005-09-10 01:23:57 +0200
committerLinus Torvalds2005-09-10 01:39:13 +0200
commit9ba00538ada7ecb4fb8bd71ba734a8eada987817 (patch)
tree47544958a5564856d7225a2dc4040637d731c39d /drivers
parent[PATCH] md: use kthread infrastructure in md (diff)
downloadkernel-qcow2-linux-9ba00538ada7ecb4fb8bd71ba734a8eada987817.tar.gz
kernel-qcow2-linux-9ba00538ada7ecb4fb8bd71ba734a8eada987817.tar.xz
kernel-qcow2-linux-9ba00538ada7ecb4fb8bd71ba734a8eada987817.zip
[PATCH] md: ensure bitmap_writeback_daemon handles shutdown properly.
mddev->bitmap gets clearred before the writeback daemon is stopped. So the write_back daemon needs to be careful not to dereference the 'bitmap' if it is NULL. Signed-off-by: Neil Brown <neilb@cse.unsw.edu.au> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/md/bitmap.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/md/bitmap.c b/drivers/md/bitmap.c
index 90fe70d76a31..87145faac491 100644
--- a/drivers/md/bitmap.c
+++ b/drivers/md/bitmap.c
@@ -1156,6 +1156,9 @@ static void bitmap_writeback_daemon(mddev_t *mddev)
err = -EINTR;
goto out;
}
+ if (bitmap == NULL)
+ /* about to be stopped. */
+ return;
PRINTK("%s: bitmap writeback daemon woke up...\n", bmname(bitmap));
/* wait on bitmap page writebacks */