diff options
author | NeilBrown <neilb@cse.unsw.edu.au> | 2005-09-09 16:23:49 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-09-09 16:39:11 -0700 |
commit | 585f0dd5a955c420ff3af5193aa07d6f789bf81a (patch) | |
tree | 9ee200366c1c92d2e9b6a44288a375007825d018 /drivers/md | |
parent | 9e6603da9b9cfb14a6aca3845227f8c59f7eeb9b (diff) | |
download | blackbird-op-linux-585f0dd5a955c420ff3af5193aa07d6f789bf81a.tar.gz blackbird-op-linux-585f0dd5a955c420ff3af5193aa07d6f789bf81a.zip |
[PATCH] md: make sure bitmap_daemon_work actually does work.
The 'lastrun' time wasn't being initialised, so it could be half a
jiffie-cycle before it seemed to be time to do work again.
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/md')
-rw-r--r-- | drivers/md/bitmap.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/md/bitmap.c b/drivers/md/bitmap.c index 2c84de2b4ad5..f0f510c13410 100644 --- a/drivers/md/bitmap.c +++ b/drivers/md/bitmap.c @@ -522,6 +522,7 @@ success: /* assign fields using values from superblock */ bitmap->chunksize = chunksize; bitmap->daemon_sleep = daemon_sleep; + bitmap->daemon_lastrun = jiffies; bitmap->max_write_behind = write_behind; bitmap->flags |= sb->state; bitmap->events_cleared = le64_to_cpu(sb->events_cleared); |