diff options
author | Neil Brown <neilb@cse.unsw.edu.au> | 2005-06-27 22:29:34 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-06-28 14:53:41 -0700 |
commit | f8b58edf3acf0dcc186b8330939000ecf709368a (patch) | |
tree | d28b413c34ef9c673c242504496a4053d059ace8 /drivers | |
parent | 314b6a4d80a7a5217c86ffdca926b6f406da0e0e (diff) | |
download | op-kernel-dev-f8b58edf3acf0dcc186b8330939000ecf709368a.zip op-kernel-dev-f8b58edf3acf0dcc186b8330939000ecf709368a.tar.gz |
[PATCH] md: bio leak fix
insert a missing bio_put when writting the md superblock.
Without this we have a steady growth in the "bio" slab.
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/md.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/md/md.c b/drivers/md/md.c index 3802f7a..4a0c57d 100644 --- a/drivers/md/md.c +++ b/drivers/md/md.c @@ -338,6 +338,7 @@ static int super_written(struct bio *bio, unsigned int bytes_done, int error) if (atomic_dec_and_test(&rdev->mddev->pending_writes)) wake_up(&rdev->mddev->sb_wait); + bio_put(bio); return 0; } |