Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/fs/mfs/mfs_balloc.c

    rcde999a r1eaa3cf  
    5454 *                      the new inode will be saved.
    5555 *
    56  * @return              EOK on success or an error code.
     56 * @return              EOK on success or a negative error code.
    5757 */
    5858int
     
    6868 * @param inum          Number of the inode to free.
    6969 *
    70  * @return              EOK on success or an error code.
     70 * @return              EOK on success or a negative error code.
    7171 */
    7272int
     
    8282 *                      of the zone will be saved.
    8383 *
    84  * @return              EOK on success or an error code.
     84 * @return              EOK on success or a negative error code.
    8585 */
    8686int
     
    105105 * @param zone          Index of the zone to free.
    106106 *
    107  * @return              EOK on success or an error code.
     107 * @return              EOK on success or a negative error code.
    108108 */
    109109int
     
    132132 *                      will be stored.
    133133 *
    134  * @return              EOK on success or an error code.
     134 * @return              EOK on success or a negative error code.
    135135 */
    136136int
     
    146146 *                      will be stored.
    147147 *
    148  * @return              EOK on success or an error code.
     148 * @return              EOK on success or a negative error code.
    149149 */
    150150
     
    162162 *                      will be stores.
    163163 *
    164  * @return              EOK on success or an error code.
     164 * @return              EOK on success or a negative error code.
    165165 */
    166166static int
     
    226226 *                      BMAP_INODE if operating on the inode's bitmap.
    227227 *
    228  * @return              EOK on success or an error code.
     228 * @return              EOK on success or a negative error code.
    229229 */
    230230static int
     
    246246                        printf(NAME ": Error! Trying to free beyond the "
    247247                            "bitmap max size\n");
    248                         return EIO;
     248                        return -1;
    249249                }
    250250        } else {
     
    254254                        printf(NAME ": Error! Trying to free beyond the "
    255255                            "bitmap max size\n");
    256                         return EIO;
     256                        return -1;
    257257                }
    258258        }
     
    293293 *                      BMAP_INODE if operating on the inode's bitmap.
    294294 *
    295  * @return              EOK on success or an error code.
     295 * @return              EOK on success or a negative error code.
    296296 */
    297297static int
     
    303303        unsigned *search, i, start_block;
    304304        unsigned bits_per_block;
    305         int r;
    306         int freebit;
     305        int r, freebit;
    307306
    308307        sbi = inst->sbi;
Note: See TracChangeset for help on using the changeset viewer.