diff options
Diffstat (limited to 'block/ioctl.c')
| -rw-r--r-- | block/ioctl.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/block/ioctl.c b/block/ioctl.c index c832d639b6e2..d03985b04d67 100644 --- a/block/ioctl.c +++ b/block/ioctl.c | |||
| @@ -18,7 +18,6 @@ static int blkpg_ioctl(struct block_device *bdev, struct blkpg_ioctl_arg __user | |||
| 18 | struct disk_part_iter piter; | 18 | struct disk_part_iter piter; |
| 19 | long long start, length; | 19 | long long start, length; |
| 20 | int partno; | 20 | int partno; |
| 21 | int err; | ||
| 22 | 21 | ||
| 23 | if (!capable(CAP_SYS_ADMIN)) | 22 | if (!capable(CAP_SYS_ADMIN)) |
| 24 | return -EACCES; | 23 | return -EACCES; |
| @@ -61,10 +60,10 @@ static int blkpg_ioctl(struct block_device *bdev, struct blkpg_ioctl_arg __user | |||
| 61 | disk_part_iter_exit(&piter); | 60 | disk_part_iter_exit(&piter); |
| 62 | 61 | ||
| 63 | /* all seems OK */ | 62 | /* all seems OK */ |
| 64 | err = add_partition(disk, partno, start, length, | 63 | part = add_partition(disk, partno, start, length, |
| 65 | ADDPART_FLAG_NONE); | 64 | ADDPART_FLAG_NONE); |
| 66 | mutex_unlock(&bdev->bd_mutex); | 65 | mutex_unlock(&bdev->bd_mutex); |
| 67 | return err; | 66 | return IS_ERR(part) ? PTR_ERR(part) : 0; |
| 68 | case BLKPG_DEL_PARTITION: | 67 | case BLKPG_DEL_PARTITION: |
| 69 | part = disk_get_part(disk, partno); | 68 | part = disk_get_part(disk, partno); |
| 70 | if (!part) | 69 | if (!part) |
