Commit 582e2e05 authored by Jianpeng Ma's avatar Jianpeng Ma Committed by NeilBrown

md/bitmap:Don't use IS_ERR to judge alloc_page().

Signed-off-by: default avatarJianpeng Ma <majianpeng@gmail.com>
Signed-off-by: default avatarNeilBrown <neilb@suse.de>
parent 7ad4d4a6
...@@ -470,14 +470,10 @@ static int bitmap_new_disk_sb(struct bitmap *bitmap) ...@@ -470,14 +470,10 @@ static int bitmap_new_disk_sb(struct bitmap *bitmap)
{ {
bitmap_super_t *sb; bitmap_super_t *sb;
unsigned long chunksize, daemon_sleep, write_behind; unsigned long chunksize, daemon_sleep, write_behind;
int err = -EINVAL;
bitmap->storage.sb_page = alloc_page(GFP_KERNEL); bitmap->storage.sb_page = alloc_page(GFP_KERNEL);
if (IS_ERR(bitmap->storage.sb_page)) { if (bitmap->storage.sb_page == NULL)
err = PTR_ERR(bitmap->storage.sb_page); return -ENOMEM;
bitmap->storage.sb_page = NULL;
return err;
}
bitmap->storage.sb_page->index = 0; bitmap->storage.sb_page->index = 0;
sb = kmap_atomic(bitmap->storage.sb_page); sb = kmap_atomic(bitmap->storage.sb_page);
......
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