Commit ec2cdedf798385a9397ac50dd0405dd658f8529c

Authored by Tejun Heo
Committed by Jens Axboe
1 parent def4e38ddd

block: allow deleting zero length partition

delete_partition() was noop for zero length partition.  As the
addition code allows creating zero lenght partition and deletion is
assumed to always succeed, this causes memory leak for zero length
partitions.  Allow zero length partitions to end their meaningless
lives.

While at it, allow deleting zero lenght partition via
BLKPG_DEL_PARTITION ioctl too.

Signed-off-by: Tejun Heo <tj@kernel.org>
Signed-off-by: Jens Axboe <jens.axboe@oracle.com>

Showing 2 changed files with 0 additions and 4 deletions Side-by-side Diff

... ... @@ -68,8 +68,6 @@
68 68 case BLKPG_DEL_PARTITION:
69 69 if (!disk->part[part-1])
70 70 return -ENXIO;
71   - if (disk->part[part - 1]->nr_sects == 0)
72   - return -ENXIO;
73 71 bdevp = bdget_disk(disk, part);
74 72 if (!bdevp)
75 73 return -ENOMEM;
fs/partitions/check.c
... ... @@ -325,8 +325,6 @@
325 325  
326 326 if (!p)
327 327 return;
328   - if (!p->nr_sects)
329   - return;
330 328 disk->part[part-1] = NULL;
331 329 p->start_sect = 0;
332 330 p->nr_sects = 0;