Ignore:
File:
1 edited

Legend:

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

    r6d4d883 rf7d6b30  
    4444int
    4545mfs_read_dentry(struct mfs_node *mnode,
    46     struct mfs_dentry_info *d_info, unsigned index)
     46                     struct mfs_dentry_info *d_info, unsigned index)
    4747{
    4848        const struct mfs_instance *inst = mnode->instance;
     
    5757
    5858        if (block == 0) {
    59                 /* End of the dentries list */
     59                /*End of the dentries list*/
    6060                r = EOK;
    6161                goto out_err;
     
    7979        } else {
    8080                const int namelen = longnames ? MFS_L_MAX_NAME_LEN :
    81                     MFS_MAX_NAME_LEN;
     81                                    MFS_MAX_NAME_LEN;
    8282
    8383                struct mfs_dentry *d;
    8484
    8585                d = b->data + dentry_off * (longnames ? MFSL_DIRSIZE :
    86                     MFS_DIRSIZE);
     86                                            MFS_DIRSIZE);
    8787                d_info->d_inum = conv16(sbi->native, d->d_inum);
    8888                memcpy(d_info->d_name, d->d_name, namelen);
     
    101101/**Write a directory entry on disk.
    102102 *
    103  * @param d_info Pointer to the directory entry structure to write on disk.
    104  *
    105  * @return       EOK on success or a negative error code.
     103 * @param d_info        Pointer to the directory entry structure to write on disk.
     104 *
     105 * @return              EOK on success or a negative error code.
    106106 */
    107107int
     
    178178
    179179                if (name_len == d_name_len &&
    180                     !bcmp(d_info.d_name, d_name, name_len)) {
    181 
     180                                !bcmp(d_info.d_name, d_name, name_len)) {
    182181                        d_info.d_inum = 0;
    183182                        r = mfs_write_dentry(&d_info);
     
    198197 */
    199198int
    200 mfs_insert_dentry(struct mfs_node *mnode, const char *d_name,
    201     fs_index_t d_inum)
     199mfs_insert_dentry(struct mfs_node *mnode, const char *d_name, fs_index_t d_inum)
    202200{
    203201        int r;
     
    211209                return ENAMETOOLONG;
    212210
    213         /* Search for an empty dentry */
     211        /*Search for an empty dentry*/
    214212        unsigned i;
    215213        for (i = 0; i < mnode->ino_i->i_size / sbi->dirsize; ++i) {
     
    219217
    220218                if (d_info.d_inum == 0) {
    221                         /* This entry is not used */
     219                        /*This entry is not used*/
    222220                        empty_dentry_found = true;
    223221                        break;
     
    233231
    234232                if (b == 0) {
    235                         /* Increase the inode size */
     233                        /*Increase the inode size*/
    236234
    237235                        uint32_t dummy;
Note: See TracChangeset for help on using the changeset viewer.