Commit bc7f77de authored by NeilBrown's avatar NeilBrown Committed by Linus Torvalds

[PATCH] md: minor code rearrangement in bitmap_init_from_disk

Signed-off-by: default avatarNeil Brown <neilb@cse.unsw.edu.au>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent d80a138c
...@@ -781,7 +781,9 @@ static int bitmap_init_from_disk(struct bitmap *bitmap) ...@@ -781,7 +781,9 @@ static int bitmap_init_from_disk(struct bitmap *bitmap)
"recovery\n", bmname(bitmap)); "recovery\n", bmname(bitmap));
bytes = (chunks + 7) / 8; bytes = (chunks + 7) / 8;
num_pages = (bytes + PAGE_SIZE - 1) / PAGE_SIZE;
num_pages = (bytes + sizeof(bitmap_super_t) + PAGE_SIZE - 1) / PAGE_SIZE + 1;
if (i_size_read(file->f_mapping->host) < bytes + sizeof(bitmap_super_t)) { if (i_size_read(file->f_mapping->host) < bytes + sizeof(bitmap_super_t)) {
printk(KERN_INFO "%s: bitmap file too short %lu < %lu\n", printk(KERN_INFO "%s: bitmap file too short %lu < %lu\n",
bmname(bitmap), bmname(bitmap),
...@@ -789,18 +791,16 @@ static int bitmap_init_from_disk(struct bitmap *bitmap) ...@@ -789,18 +791,16 @@ static int bitmap_init_from_disk(struct bitmap *bitmap)
bytes + sizeof(bitmap_super_t)); bytes + sizeof(bitmap_super_t));
goto out; goto out;
} }
num_pages++;
ret = -ENOMEM;
bitmap->filemap = kmalloc(sizeof(struct page *) * num_pages, GFP_KERNEL); bitmap->filemap = kmalloc(sizeof(struct page *) * num_pages, GFP_KERNEL);
if (!bitmap->filemap) { if (!bitmap->filemap)
ret = -ENOMEM;
goto out; goto out;
}
bitmap->filemap_attr = kmalloc(sizeof(long) * num_pages, GFP_KERNEL); bitmap->filemap_attr = kmalloc(sizeof(long) * num_pages, GFP_KERNEL);
if (!bitmap->filemap_attr) { if (!bitmap->filemap_attr)
ret = -ENOMEM;
goto out; goto out;
}
memset(bitmap->filemap_attr, 0, sizeof(long) * num_pages); memset(bitmap->filemap_attr, 0, sizeof(long) * num_pages);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment