Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/vfs/vfs_ipc.c

    rb7fd2a0 rd2c8533  
    4141        bool desc = IPC_GET_ARG3(*request);
    4242       
    43         int outfd = -1;
    44         errno_t rc = vfs_op_clone(oldfd, newfd, desc, &outfd);
    45         async_answer_1(rid, rc, outfd);
     43        int ret = vfs_op_clone(oldfd, newfd, desc);
     44        async_answer_0(rid, ret);
    4645}
    4746
     
    5352        vfs_fs_probe_info_t info;
    5453        size_t len;
    55         errno_t rc;
     54        int rc;
    5655       
    5756        /*
     
    8887        size_t len;
    8988        vfs_fstypes_t fstypes;
    90         errno_t rc;
     89        int rc;
    9190
    9291        rc = vfs_get_fstypes(&fstypes);
     
    129128       
    130129        /* Now we expect to receive the mount options. */
    131         errno_t rc = async_data_write_accept((void **) &opts, true, 0,
     130        int rc = async_data_write_accept((void **) &opts, true, 0,
    132131            MAX_MNTOPTS_LEN, 0, NULL);
    133132        if (rc != EOK) {
     
    161160        int mode = IPC_GET_ARG2(*request);
    162161
    163         errno_t rc = vfs_op_open(fd, mode);
     162        int rc = vfs_op_open(fd, mode);
    164163        async_answer_0(rid, rc);
    165164}
     
    168167{
    169168        int fd = IPC_GET_ARG1(*request);
    170         errno_t rc = vfs_op_put(fd);
     169        int rc = vfs_op_put(fd);
    171170        async_answer_0(rid, rc);
    172171}
     
    179178
    180179        size_t bytes = 0;
    181         errno_t rc = vfs_op_read(fd, pos, &bytes);
     180        int rc = vfs_op_read(fd, pos, &bytes);
    182181        async_answer_1(rid, rc, bytes);
    183182}
     
    189188        char *old = NULL;
    190189        char *new = NULL;
    191         errno_t rc;
     190        int rc;
    192191       
    193192        basefd = IPC_GET_ARG1(*request);
     
    231230        int fd = IPC_GET_ARG1(*request);
    232231        int64_t size = MERGE_LOUP32(IPC_GET_ARG2(*request), IPC_GET_ARG3(*request));
    233         errno_t rc = vfs_op_resize(fd, size);
     232        int rc = vfs_op_resize(fd, size);
    234233        async_answer_0(rid, rc);
    235234}
     
    238237{
    239238        int fd = IPC_GET_ARG1(*request);
    240         errno_t rc = vfs_op_stat(fd);
     239        int rc = vfs_op_stat(fd);
    241240        async_answer_0(rid, rc);
    242241}
     
    246245        int fd = (int) IPC_GET_ARG1(*request);
    247246       
    248         errno_t rc = vfs_op_statfs(fd);
     247        int rc = vfs_op_statfs(fd);
    249248        async_answer_0(rid, rc);
    250249}
     
    253252{
    254253        int fd = IPC_GET_ARG1(*request);
    255         errno_t rc = vfs_op_sync(fd);
     254        int rc = vfs_op_sync(fd);
    256255        async_answer_0(rid, rc);
    257256}
     
    263262       
    264263        char *path;
    265         errno_t rc = async_data_write_accept((void **) &path, true, 0, 0, 0, NULL);
     264        int rc = async_data_write_accept((void **) &path, true, 0, 0, 0, NULL);
    266265        if (rc == EOK)
    267266                rc = vfs_op_unlink(parentfd, expectfd, path);
     
    273272{
    274273        int mpfd = IPC_GET_ARG1(*request);
    275         errno_t rc = vfs_op_unmount(mpfd);
     274        int rc = vfs_op_unmount(mpfd);
    276275        async_answer_0(rid, rc);
    277276}
     
    280279{
    281280        bool high_fd = IPC_GET_ARG1(*request);
    282         int fd = -1;
    283         errno_t rc = vfs_op_wait_handle(high_fd, &fd);
    284         async_answer_1(rid, rc, fd);
     281        int fd = vfs_op_wait_handle(high_fd);
     282        async_answer_1(rid, EOK, fd);
    285283}
    286284
     
    296294        int fd = 0;
    297295        char *path;
    298         errno_t rc = async_data_write_accept((void **)&path, true, 0, 0, 0, NULL);
     296        int rc = async_data_write_accept((void **)&path, true, 0, 0, 0, NULL);
    299297        if (rc == EOK) {
    300298                rc = vfs_op_walk(parentfd, flags, path, &fd);
     
    311309
    312310        size_t bytes = 0;
    313         errno_t rc = vfs_op_write(fd, pos, &bytes);
     311        int rc = vfs_op_write(fd, pos, &bytes);
    314312        async_answer_1(rid, rc, bytes);
    315313}
Note: See TracChangeset for help on using the changeset viewer.