Changeset 0b9ac3c in mainline for uspace/srv/fs/devfs/devfs_ops.c


Ignore:
Timestamp:
2010-02-23T19:03:28Z (14 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
c62d2e1
Parents:
1ccafee (diff), 5e50394 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge mainline changes.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/fs/devfs/devfs_ops.c

    r1ccafee r0b9ac3c  
    3737
    3838#include <ipc/ipc.h>
     39#include <macros.h>
    3940#include <bool.h>
    4041#include <errno.h>
     
    337338}
    338339
    339 static size_t devfs_size_get(fs_node_t *fn)
     340static aoff64_t devfs_size_get(fs_node_t *fn)
    340341{
    341342        return 0;
     
    419420       
    420421        /* Accept the mount options */
    421         ipcarg_t retval = async_data_string_receive(&opts, 0);
     422        ipcarg_t retval = async_data_write_accept((void **) &opts, true, 0, 0,
     423            0, NULL);
    422424        if (retval != EOK) {
    423425                ipc_answer_0(rid, retval);
     
    462464{
    463465        fs_index_t index = (fs_index_t) IPC_GET_ARG2(*request);
    464         off_t pos = (off_t) IPC_GET_ARG3(*request);
     466        aoff64_t pos =
     467            (aoff64_t) MERGE_LOUP32(IPC_GET_ARG3(*request), IPC_GET_ARG4(*request));
    465468       
    466469        if (index == 0) {
     
    596599{
    597600        fs_index_t index = (fs_index_t) IPC_GET_ARG2(*request);
    598         off_t pos = (off_t) IPC_GET_ARG3(*request);
    599        
    600601        if (index == 0) {
    601602                ipc_answer_0(rid, ENOTSUP);
Note: See TracChangeset for help on using the changeset viewer.