Changeset 34f62f8 in mainline for uspace/srv/fs/tmpfs/tmpfs_ops.c


Ignore:
Timestamp:
2008-04-20T11:22:33Z (17 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
869e546
Parents:
9765182
Message:

Revert libfs node_get() API to a model without the parent node pointer
argument.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/fs/tmpfs/tmpfs_ops.c

    r9765182 r34f62f8  
    7171/* Forward declarations of static functions. */
    7272static void *tmpfs_match(void *, const char *);
    73 static void *tmpfs_node_get(dev_handle_t, fs_index_t, fs_index_t);
     73static void *tmpfs_node_get(dev_handle_t, fs_index_t);
    7474static void tmpfs_node_put(void *);
    7575static void *tmpfs_create_node(int);
     
    269269
    270270void *
    271 tmpfs_node_get(dev_handle_t dev_handle, fs_index_t index, fs_index_t pindex)
     271tmpfs_node_get(dev_handle_t dev_handle, fs_index_t index)
    272272{
    273273        unsigned long key = index;
Note: See TracChangeset for help on using the changeset viewer.