Changeset ae7d03c in mainline for uspace/srv/fs


Ignore:
Timestamp:
2018-05-10T13:39:19Z (7 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
e8975278
Parents:
b277bef
git-author:
Jiri Svoboda <jiri@…> (2018-05-10 07:38:12)
git-committer:
Jiri Svoboda <jiri@…> (2018-05-10 13:39:19)
Message:

Selected ccheck-proposed comment fixes.

Location:
uspace/srv/fs
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/fs/cdfs/cdfs_ops.c

    rb277bef rae7d03c  
    933933                if (sequence_nr != 1) {
    934934                        /*
    935                          * We only support the first disc
     935                         * We only support the first disc
    936936                         * in multi-disc sets.
    937937                         */
  • uspace/srv/fs/exfat/exfat_fat.c

    rb277bef rae7d03c  
    148148                if (nodep->currc_cached_valid && bn >= nodep->currc_cached_bn) {
    149149                        /*
    150                         * We can start with the cluster cached by the previous call to
    151                         * fat_block_get().
    152                         */
     150                         * We can start with the cluster cached by the previous call to
     151                         * fat_block_get().
     152                         */
    153153                        firstc = nodep->currc_cached_value;
    154154                        relbn -= (nodep->currc_cached_bn / SPC(bs)) * SPC(bs);
  • uspace/srv/fs/fat/fat_fat.c

    rb277bef rae7d03c  
    140140        if (((((nodep->size - 1) / BPS(bs)) / SPC(bs)) == bn / SPC(bs)) &&
    141141            nodep->lastc_cached_valid) {
    142                 /*
     142                /*
    143143                 * This is a request to read a block within the last cluster
    144144                 * when fortunately we have the last cluster number cached.
     
    321321                        }
    322322                        /*
    323                         * Combining value with last byte of current sector and
    324                         * first byte of next sector
    325                         */
     323                         * Combining value with last byte of current sector and
     324                         * first byte of next sector
     325                         */
    326326                        byte2 = ((uint8_t *) b1->data)[0];
    327327
Note: See TracChangeset for help on using the changeset viewer.