Changeset 06d85e5 in mainline for uspace/lib/ext4/libext4_inode.c


Ignore:
Timestamp:
2012-06-18T11:09:34Z (13 years ago)
Author:
Frantisek Princ <frantisek.princ@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
2616a75b
Parents:
9a487cc
Message:

Most of comments modified by current coding style

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/ext4/libext4_inode.c

    r9a487cc r06d85e5  
    266266        if (ext4_superblock_has_feature_read_only(sb, EXT4_FEATURE_RO_COMPAT_HUGE_FILE)) {
    267267
    268                 // 48-bit field
     268                /* 48-bit field */
    269269                uint64_t count = ((uint64_t)uint16_t_le2host(inode->osd2.linux2.blocks_high)) << 32 |
    270270                                uint32_t_le2host(inode->blocks_count_lo);
     
    292292                uint64_t count)
    293293{
    294     // 32-bit maximum
     294    /* 32-bit maximum */
    295295    uint64_t max = 0;
    296296    max = ~max >> 32;
     
    303303    }
    304304
    305     // Check if there can be used huge files (many blocks)
     305    /* Check if there can be used huge files (many blocks) */
    306306    if (!ext4_superblock_has_feature_read_only(sb, EXT4_FEATURE_RO_COMPAT_HUGE_FILE)) {
    307307        return EINVAL;
    308308    }
    309309
    310     // 48-bit maximum
     310    /* 48-bit maximum */
    311311    max = 0;
    312312    max = ~max >> 16;
Note: See TracChangeset for help on using the changeset viewer.