Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/fdisk/src/fdisk.c

    rd1582b50 r7cec216  
    11/*
    2  * Copyright (c) 2015 Jiri Svoboda
     2 * Copyright (c) 2024 Jiri Svoboda
    33 * All rights reserved.
    44 *
     
    810810}
    811811
     812/** Destroy partition.
     813 *
     814 * @param part Partition
     815 * @return EOK on success or error code
     816 */
    812817errno_t fdisk_part_destroy(fdisk_part_t *part)
    813818{
    814819        errno_t rc;
     820
     821        rc = vol_part_eject(part->dev->fdisk->vol, part->svc_id);
     822        if (rc != EOK)
     823                return EIO;
    815824
    816825        rc = vbd_part_delete(part->dev->fdisk->vbd, part->part_id);
Note: See TracChangeset for help on using the changeset viewer.