mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-11 21:14:07 +08:00
[PATCH] md: don't allow new md/bitmap file to be set if one already exists
... otherwise we loose a reference and can never free the file. 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>
This commit is contained in:
parent
844e8d904a
commit
1923b99a0f
@ -2430,7 +2430,7 @@ static int set_bitmap_file(mddev_t *mddev, int fd)
|
||||
{
|
||||
int err;
|
||||
|
||||
if (mddev->pers)
|
||||
if (mddev->pers || mddev->bitmap_file)
|
||||
return -EBUSY;
|
||||
|
||||
mddev->bitmap_file = fget(fd);
|
||||
|
Loading…
Reference in New Issue
Block a user