X-Git-Url: http://git.cascardo.info/?a=blobdiff_plain;f=block%2Fioctl.c;h=7d5c3b20af451a111834efbabbdd83269085f123;hb=d72681d7c61f32a89147b8867cfb80e4ea119972;hp=a31d91d9bc5a33d70388b0063e1d80c41383c125;hpb=e589db7a6a9c8f1557007f2cc765ee28ad7a1edd;p=cascardo%2Flinux.git diff --git a/block/ioctl.c b/block/ioctl.c index a31d91d9bc5a..7d5c3b20af45 100644 --- a/block/ioctl.c +++ b/block/ioctl.c @@ -64,7 +64,7 @@ static int blkpg_ioctl(struct block_device *bdev, struct blkpg_ioctl_arg __user part = add_partition(disk, partno, start, length, ADDPART_FLAG_NONE, NULL); mutex_unlock(&bdev->bd_mutex); - return IS_ERR(part) ? PTR_ERR(part) : 0; + return PTR_ERR_OR_ZERO(part); case BLKPG_DEL_PARTITION: part = disk_get_part(disk, partno); if (!part)