Changeset 06901c6b in mainline for uspace/srv/fs/fat/fat_ops.c


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.

File:
1 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,
Note: See TracChangeset for help on using the changeset viewer.