diff options
author | NeilBrown <neilb@cse.unsw.edu.au> | 2005-09-09 19:23:58 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-09-09 19:39:13 -0400 |
commit | 500af87abb81098da47474c81f29ea315a056dc5 (patch) | |
tree | 2abccbcd980b7be3386a1334060510571ffd156f /drivers/md/raid1.c | |
parent | 9ba00538ada7ecb4fb8bd71ba734a8eada987817 (diff) |
[PATCH] md: tidy up daemon stop/start code in md/bitmap.c
The bitmap code used to have two daemons, so there is some 'common' start/stop
code. But now there is only one, so the common code is just noise.
This patch tidies this up somewhat.
Signed-off-by: Neil Brown <neilb@cse.unsw.edu.au>
Signed-off-by: Adrian Bunk <bunk@stusta.de>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers/md/raid1.c')
-rw-r--r-- | drivers/md/raid1.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/md/raid1.c b/drivers/md/raid1.c index bfe78571586b..a93ca478142a 100644 --- a/drivers/md/raid1.c +++ b/drivers/md/raid1.c | |||
@@ -1703,7 +1703,7 @@ static int raid1_reshape(mddev_t *mddev, int raid_disks) | |||
1703 | return 0; | 1703 | return 0; |
1704 | } | 1704 | } |
1705 | 1705 | ||
1706 | void raid1_quiesce(mddev_t *mddev, int state) | 1706 | static void raid1_quiesce(mddev_t *mddev, int state) |
1707 | { | 1707 | { |
1708 | conf_t *conf = mddev_to_conf(mddev); | 1708 | conf_t *conf = mddev_to_conf(mddev); |
1709 | 1709 | ||