Changeset a46e56b in mainline for uspace/srv/fs/tmpfs/tmpfs_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/tmpfs/tmpfs_ops.c

    r3e242d2 ra46e56b  
    484484         * Receive the read request.
    485485         */
    486         cap_call_handle_t callid;
     486        cap_call_handle_t chandle;
    487487        size_t size;
    488         if (!async_data_read_receive(&callid, &size)) {
    489                 async_answer_0(callid, EINVAL);
     488        if (!async_data_read_receive(&chandle, &size)) {
     489                async_answer_0(chandle, EINVAL);
    490490                return EINVAL;
    491491        }
     
    494494        if (nodep->type == TMPFS_FILE) {
    495495                bytes = min(nodep->size - pos, size);
    496                 (void) async_data_read_finalize(callid, nodep->data + pos,
     496                (void) async_data_read_finalize(chandle, nodep->data + pos,
    497497                    bytes);
    498498        } else {
     
    510510
    511511                if (lnk == NULL) {
    512                         async_answer_0(callid, ENOENT);
     512                        async_answer_0(chandle, ENOENT);
    513513                        return ENOENT;
    514514                }
     
    516516                dentryp = list_get_instance(lnk, tmpfs_dentry_t, link);
    517517
    518                 (void) async_data_read_finalize(callid, dentryp->name,
     518                (void) async_data_read_finalize(chandle, dentryp->name,
    519519                    str_size(dentryp->name) + 1);
    520520                bytes = 1;
     
    547547         * Receive the write request.
    548548         */
    549         cap_call_handle_t callid;
     549        cap_call_handle_t chandle;
    550550        size_t size;
    551         if (!async_data_write_receive(&callid, &size)) {
    552                 async_answer_0(callid, EINVAL);
     551        if (!async_data_write_receive(&chandle, &size)) {
     552                async_answer_0(chandle, EINVAL);
    553553                return EINVAL;
    554554        }
     
    559559        if (pos + size <= nodep->size) {
    560560                /* The file size is not changing. */
    561                 (void) async_data_write_finalize(callid, nodep->data + pos,
     561                (void) async_data_write_finalize(chandle, nodep->data + pos,
    562562                    size);
    563563                goto out;
     
    573573        void *newdata = realloc(nodep->data, nodep->size + delta);
    574574        if (!newdata) {
    575                 async_answer_0(callid, ENOMEM);
     575                async_answer_0(chandle, ENOMEM);
    576576                size = 0;
    577577                goto out;
     
    581581        nodep->size += delta;
    582582        nodep->data = newdata;
    583         (void) async_data_write_finalize(callid, nodep->data + pos, size);
     583        (void) async_data_write_finalize(chandle, nodep->data + pos, size);
    584584
    585585out:
Note: See TracChangeset for help on using the changeset viewer.