Changeset cde999a in mainline for uspace/srv/fs/mfs


Ignore:
Timestamp:
2018-01-04T20:22:51Z (8 years ago)
Author:
Jiří Zárevúcky <zarevucky.jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
3d95c9d, 84a1a54
Parents:
3c7702c0
git-author:
Jiří Zárevúcky <zarevucky.jiri@…> (2018-01-04 19:18:29)
git-committer:
Jiří Zárevúcky <zarevucky.jiri@…> (2018-01-04 20:22:51)
Message:

Fix comments to stop referring to error codes as negative.

Location:
uspace/srv/fs/mfs
Files:
4 edited

Legend:

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

    r3c7702c0 rcde999a  
    5454 *                      the new inode will be saved.
    5555 *
    56  * @return              EOK on success or a negative error code.
     56 * @return              EOK on success or an error code.
    5757 */
    5858int
     
    6868 * @param inum          Number of the inode to free.
    6969 *
    70  * @return              EOK on success or a negative error code.
     70 * @return              EOK on success or an error code.
    7171 */
    7272int
     
    8282 *                      of the zone will be saved.
    8383 *
    84  * @return              EOK on success or a negative error code.
     84 * @return              EOK on success or an error code.
    8585 */
    8686int
     
    105105 * @param zone          Index of the zone to free.
    106106 *
    107  * @return              EOK on success or a negative error code.
     107 * @return              EOK on success or an error code.
    108108 */
    109109int
     
    132132 *                      will be stored.
    133133 *
    134  * @return              EOK on success or a negative error code.
     134 * @return              EOK on success or an error code.
    135135 */
    136136int
     
    146146 *                      will be stored.
    147147 *
    148  * @return              EOK on success or a negative error code.
     148 * @return              EOK on success or an error code.
    149149 */
    150150
     
    162162 *                      will be stores.
    163163 *
    164  * @return              EOK on success or a negative error code.
     164 * @return              EOK on success or an error code.
    165165 */
    166166static int
     
    226226 *                      BMAP_INODE if operating on the inode's bitmap.
    227227 *
    228  * @return              EOK on success or a negative error code.
     228 * @return              EOK on success or an error code.
    229229 */
    230230static int
     
    293293 *                      BMAP_INODE if operating on the inode's bitmap.
    294294 *
    295  * @return              EOK on success or a negative error code.
     295 * @return              EOK on success or an error code.
    296296 */
    297297static int
  • uspace/srv/fs/mfs/mfs_dentry.c

    r3c7702c0 rcde999a  
    4040 * @param index         index of the dentry in the list.
    4141 *
    42  * @return              EOK on success or a negative error code.
     42 * @return              EOK on success or an error code.
    4343 */
    4444int
     
    103103 * @param d_info The directory entry to write to disk.
    104104 *
    105  * @return       EOK on success or a negative error code.
     105 * @return       EOK on success or an error code.
    106106 */
    107107int
     
    154154 * @param d_name        Name of the directory entry to delete.
    155155 *
    156  * @return              EOK on success or a negative error code.
     156 * @return              EOK on success or an error code.
    157157 */
    158158int
     
    195195 * @param d_inum        index of the inode that will be pointed by the new dentry.
    196196 *
    197  * @return              EOK on success or a negative error code.
     197 * @return              EOK on success or an error code.
    198198 */
    199199int
  • uspace/srv/fs/mfs/mfs_inode.c

    r3c7702c0 rcde999a  
    5555 * @param index         index of the inode to read.
    5656 *
    57  * @return              EOK on success or a negative error code.
     57 * @return              EOK on success or an error code.
    5858 */
    5959int
     
    201201 * @param mnode         Pointer to the generic MINIX inode in memory.
    202202 *
    203  * @return              EOK on success or a negative error code.
     203 * @return              EOK on success or an error code.
    204204 */
    205205int
     
    319319 * @param size_shrink   Number of bytes that will be subtracted to the inode.
    320320 *
    321  * @return              EOK on success or a negative error code.
     321 * @return              EOK on success or an error code.
    322322 */
    323323int
  • uspace/srv/fs/mfs/mfs_rw.c

    r3c7702c0 rcde999a  
    5959 * @param pos   Position in file.
    6060 *
    61  * @return      EOK on success or a negative error code.
     61 * @return      EOK on success or an error code.
    6262 */
    6363int
     
    236236 * @param new_size      The new size of the inode.
    237237 *
    238  * @return              EOK on success or a negative error code.
     238 * @return              EOK on success or an error code.
    239239 */
    240240int
Note: See TracChangeset for help on using the changeset viewer.