diff options
author | NeilBrown <neilb@suse.de> | 2007-07-17 07:06:13 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-07-17 13:23:15 -0400 |
commit | 4ad1366376bfef32ec0ffa12d1faa483d6f330bd (patch) | |
tree | 87a9c864ec5ebd446f6c99f3298bc7638efa8f1e /drivers/md/md.c | |
parent | f0d76d70bc77b9b11256a3a23e98e80878be1578 (diff) |
md: change bitmap_unplug and others to void functions
bitmap_unplug only ever returns 0, so it may as well be void. Two callers try
to print a message if it returns non-zero, but that message is already printed
by bitmap_file_kick.
write_page returns an error which is not consistently checked. It always
causes BITMAP_WRITE_ERROR to be set on an error, and that can more
conveniently be checked.
When the return of write_page is checked, an error causes bitmap_file_kick to
be called - so move that call into write_page - and protect against recursive
calls into bitmap_file_kick.
bitmap_update_sb returns an error that is never checked.
So make these 'void' and be consistent about checking the bit.
Signed-off-by: Neil Brown <neilb@suse.de>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/md/md.c')
-rw-r--r-- | drivers/md/md.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/md/md.c b/drivers/md/md.c index 36c05ba7855a..65ddc887dfd7 100644 --- a/drivers/md/md.c +++ b/drivers/md/md.c | |||
@@ -1640,7 +1640,6 @@ static void sync_sbs(mddev_t * mddev, int nospares) | |||
1640 | 1640 | ||
1641 | static void md_update_sb(mddev_t * mddev, int force_change) | 1641 | static void md_update_sb(mddev_t * mddev, int force_change) |
1642 | { | 1642 | { |
1643 | int err; | ||
1644 | struct list_head *tmp; | 1643 | struct list_head *tmp; |
1645 | mdk_rdev_t *rdev; | 1644 | mdk_rdev_t *rdev; |
1646 | int sync_req; | 1645 | int sync_req; |
@@ -1727,7 +1726,7 @@ repeat: | |||
1727 | "md: updating %s RAID superblock on device (in sync %d)\n", | 1726 | "md: updating %s RAID superblock on device (in sync %d)\n", |
1728 | mdname(mddev),mddev->in_sync); | 1727 | mdname(mddev),mddev->in_sync); |
1729 | 1728 | ||
1730 | err = bitmap_update_sb(mddev->bitmap); | 1729 | bitmap_update_sb(mddev->bitmap); |
1731 | ITERATE_RDEV(mddev,rdev,tmp) { | 1730 | ITERATE_RDEV(mddev,rdev,tmp) { |
1732 | char b[BDEVNAME_SIZE]; | 1731 | char b[BDEVNAME_SIZE]; |
1733 | dprintk(KERN_INFO "md: "); | 1732 | dprintk(KERN_INFO "md: "); |