Ignore:
File:
1 edited

Legend:

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

    r3233adb r58898d1d  
    5050        int rc;
    5151
    52         vfs_file_t *file = vfs_file_get(fd);
    53         if (!file) {
    54                 async_answer_0(rid, ENOENT);
    55                 return;
    56         }
    57 
    5852        page = as_area_create(AS_AREA_ANY, page_size,
    5953            AS_AREA_READ | AS_AREA_WRITE | AS_AREA_CACHEABLE,
     
    6155
    6256        if (page == AS_MAP_FAILED) {
    63                 vfs_file_put(file);
    6457                async_answer_0(rid, ENOMEM);
    6558                return;
     
    7164        };
    7265
    73         fibril_mutex_lock(&file->lock);
    74         file->pos = offset;
    75         fibril_mutex_unlock(&file->lock);
    76 
    7766        size_t total = 0;
     67        aoff64_t pos = offset;
    7868        do {
    79                 rc = vfs_rdwr_internal(fd, true, &chunk);
     69                rc = vfs_rdwr_internal(fd, pos, true, &chunk);
    8070                if (rc != EOK)
    8171                        break;
     
    8373                        break;
    8474                total += chunk.size;
     75                pos += chunk.size;
    8576                chunk.buffer += chunk.size;
    8677                chunk.size = page_size - total;
    8778        } while (total < page_size);
    88 
    89         vfs_file_put(file);
    9079
    9180        async_answer_1(rid, rc, (sysarg_t) page);
Note: See TracChangeset for help on using the changeset viewer.