Changeset a46e56b in mainline for uspace/srv/fs/cdfs/cdfs_ops.c


Ignore:
Timestamp:
2018-03-22T06:49:35Z (7 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
77f0a1d
Parents:
3e242d2
git-author:
Jakub Jermar <jakub@…> (2018-03-21 23:29:06)
git-committer:
Jakub Jermar <jakub@…> (2018-03-22 06:49:35)
Message:

Prefer handle over ID in naming handle variables

File:
1 edited

Legend:

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

    r3e242d2 ra46e56b  
    12711271        }
    12721272
    1273         cap_call_handle_t callid;
     1273        cap_call_handle_t chandle;
    12741274        size_t len;
    1275         if (!async_data_read_receive(&callid, &len)) {
    1276                 async_answer_0(callid, EINVAL);
     1275        if (!async_data_read_receive(&chandle, &len)) {
     1276                async_answer_0(chandle, EINVAL);
    12771277                return EINVAL;
    12781278        }
     
    12811281                if (pos >= node->size) {
    12821282                        *rbytes = 0;
    1283                         async_data_read_finalize(callid, NULL, 0);
     1283                        async_data_read_finalize(chandle, NULL, 0);
    12841284                } else {
    12851285                        cdfs_lba_t lba = pos / BLOCK_SIZE;
     
    12931293                            BLOCK_FLAGS_NONE);
    12941294                        if (rc != EOK) {
    1295                                 async_answer_0(callid, rc);
     1295                                async_answer_0(chandle, rc);
    12961296                                return rc;
    12971297                        }
    12981298
    1299                         async_data_read_finalize(callid, block->data + offset,
     1299                        async_data_read_finalize(chandle, block->data + offset,
    13001300                            *rbytes);
    13011301                        rc = block_put(block);
     
    13061306                link_t *link = list_nth(&node->cs_list, pos);
    13071307                if (link == NULL) {
    1308                         async_answer_0(callid, ENOENT);
     1308                        async_answer_0(chandle, ENOENT);
    13091309                        return ENOENT;
    13101310                }
     
    13141314
    13151315                *rbytes = 1;
    1316                 async_data_read_finalize(callid, dentry->name,
     1316                async_data_read_finalize(chandle, dentry->name,
    13171317                    str_size(dentry->name) + 1);
    13181318        }
Note: See TracChangeset for help on using the changeset viewer.