diff options
Diffstat (limited to 'block')
-rw-r--r-- | block/genhd.c | 1 | ||||
-rw-r--r-- | block/ioctl.c | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/block/genhd.c b/block/genhd.c index 59a2db6fecef..c8da12055264 100644 --- a/block/genhd.c +++ b/block/genhd.c | |||
@@ -1004,6 +1004,7 @@ static void disk_release(struct device *dev) | |||
1004 | kfree(disk->random); | 1004 | kfree(disk->random); |
1005 | disk_replace_part_tbl(disk, NULL); | 1005 | disk_replace_part_tbl(disk, NULL); |
1006 | free_part_stats(&disk->part0); | 1006 | free_part_stats(&disk->part0); |
1007 | free_part_info(&disk->part0); | ||
1007 | kfree(disk); | 1008 | kfree(disk); |
1008 | } | 1009 | } |
1009 | struct class block_class = { | 1010 | struct class block_class = { |
diff --git a/block/ioctl.c b/block/ioctl.c index d8052f0dabd3..2c15fe0912c4 100644 --- a/block/ioctl.c +++ b/block/ioctl.c | |||
@@ -62,7 +62,7 @@ static int blkpg_ioctl(struct block_device *bdev, struct blkpg_ioctl_arg __user | |||
62 | 62 | ||
63 | /* all seems OK */ | 63 | /* all seems OK */ |
64 | part = add_partition(disk, partno, start, length, | 64 | part = add_partition(disk, partno, start, length, |
65 | ADDPART_FLAG_NONE); | 65 | ADDPART_FLAG_NONE, NULL); |
66 | mutex_unlock(&bdev->bd_mutex); | 66 | mutex_unlock(&bdev->bd_mutex); |
67 | return IS_ERR(part) ? PTR_ERR(part) : 0; | 67 | return IS_ERR(part) ? PTR_ERR(part) : 0; |
68 | case BLKPG_DEL_PARTITION: | 68 | case BLKPG_DEL_PARTITION: |