Changeset 06901c6b in mainline for uspace/srv


Ignore:
Timestamp:
2008-04-14T05:15:16Z (17 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
e13d1feb
Parents:
c9f6e49f
Message:

Add node_put() to libfs operations and instrument libfs_lookup() to use it at
appropriate places.
Add node_put() to libfs operations and instrument libfs_lookup() to use it at
appropriate places.
Add node_put() to libfs operations and instrument libfs_lookup() to use it at
appropriate places.
Add node_put() to libfs operations and instrument libfs_lookup() to use it at
appropriate places.
Add node_put() to libfs operations and instrument libfs_lookup() to use it at
appropriate places.
Add node_put() to libfs operations and instrument libfs_lookup() to use it at
appropriate places.

Location:
uspace/srv/fs
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/fs/fat/fat_ops.c

    rc9f6e49f r06901c6b  
    275275
    276276        return node;
     277}
     278
     279static void fat_node_put(void *node)
     280{
     281        /* TODO */
    277282}
    278283
     
    415420        .match = fat_match,
    416421        .node_get = fat_node_get,
     422        .node_put = fat_node_put,
    417423        .create = NULL,
    418424        .destroy = NULL,
  • uspace/srv/fs/tmpfs/tmpfs_ops.c

    rc9f6e49f r06901c6b  
    7272static void *tmpfs_match(void *, const char *);
    7373static void *tmpfs_node_get(dev_handle_t, fs_index_t, fs_index_t);
     74static void tmpfs_node_put(void *);
    7475static void *tmpfs_create_node(int);
    7576static bool tmpfs_link_node(void *, void *, const char *);
     
    122123        .match = tmpfs_match,
    123124        .node_get = tmpfs_node_get,
     125        .node_put = tmpfs_node_put,
    124126        .create = tmpfs_create_node,
    125127        .destroy = tmpfs_destroy_node,
     
    274276                return NULL;
    275277        return hash_table_get_instance(lnk, tmpfs_dentry_t, dh_link);
     278}
     279
     280void tmpfs_node_put(void *node)
     281{
     282        /* nothing to do */
    276283}
    277284
Note: See TracChangeset for help on using the changeset viewer.