Skip to content

Commit

Permalink
Merge tag 'nbd_fixes_20150305' of git://git.pengutronix.de/git/mpa/li…
Browse files Browse the repository at this point in the history
…nux-nbd into for-linus

NBD fixes based on v4.0-rc1
  • Loading branch information
axboe committed Mar 5, 2015
2 parents 7d70e15 + ff6b809 commit b8be79b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions drivers/block/nbd.c
Original file line number Diff line number Diff line change
Expand Up @@ -803,10 +803,6 @@ static int __init nbd_init(void)
return -EINVAL;
}

nbd_dev = kcalloc(nbds_max, sizeof(*nbd_dev), GFP_KERNEL);
if (!nbd_dev)
return -ENOMEM;

part_shift = 0;
if (max_part > 0) {
part_shift = fls(max_part);
Expand All @@ -828,6 +824,10 @@ static int __init nbd_init(void)
if (nbds_max > 1UL << (MINORBITS - part_shift))
return -EINVAL;

nbd_dev = kcalloc(nbds_max, sizeof(*nbd_dev), GFP_KERNEL);
if (!nbd_dev)
return -ENOMEM;

for (i = 0; i < nbds_max; i++) {
struct gendisk *disk = alloc_disk(1 << part_shift);
if (!disk)
Expand Down

0 comments on commit b8be79b

Please sign in to comment.