Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/mkexfat/mkexfat.c

    r7c3fb9b r18b6a88  
    158158        cfg->cluster_size = DEFAULT_CLUSTER_SIZE;
    159159
    160         /*
    161          * Compute the required cluster size to index
     160        /* Compute the required cluster size to index
    162161         * the entire storage device and to keep the FAT
    163162         * size less or equal to 64 Mb.
     
    180179            cfg->fat_sector_count, cfg->cluster_size / cfg->sector_size);
    181180
    182         /*
    183          * Subtract the FAT space from the total
     181        /* Subtract the FAT space from the total
    184182         * number of available clusters.
    185183         */
     
    371369        }
    372370
    373         /*
    374          * The OEM record is not yet used
     371        /* The OEM record is not yet used
    375372         * by the official exFAT implementation, we'll fill
    376373         * it with zeroes.
     
    470467
    471468        if (cur_cls == fat_entries) {
    472                 /*
    473                  * This sector is full, there are no more free entries,
     469                /* This sector is full, there are no more free entries,
    474470                 * commit the changes to disk and restart from the next
    475471                 * sector.
     
    481477                goto loop;
    482478        } else if (ncls == 1) {
    483                 /*
    484                  * This is the last cluster of this chain, mark it
     479                /* This is the last cluster of this chain, mark it
    485480                 * with EOF.
    486481                 */
     
    576571
    577572                if (table_size < cfg->sector_size) {
    578                         /*
    579                          * Reset the content of the unused part
     573                        /* Reset the content of the unused part
    580574                         * of the last sector.
    581575                         */
     
    662656                goto exit;
    663657
    664         /*
    665          * Fill the content of the sectors not used by the
     658        /* Fill the content of the sectors not used by the
    666659         * root directory with zeroes.
    667660         */
Note: See TracChangeset for help on using the changeset viewer.