Changeset b818cff in mainline for uspace/srv/vfs/vfs.c


Ignore:
Timestamp:
2007-11-06T17:26:28Z (18 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
44358c1
Parents:
6537572
Message:

VFS work.
Implement VFS node hash table management.

File:
1 edited

Legend:

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

    r6537572 rb818cff  
    125125
    126126        /*
     127         * Initialize VFS node hash table.
     128         */
     129        if (!vfs_nodes_init()) {
     130                printf("Failed to initialize the VFS node hash table.\n");
     131                return ENOMEM;
     132        }
     133
     134        /*
    127135         * Allocate and initialize the Path Lookup Buffer.
    128136         */
Note: See TracChangeset for help on using the changeset viewer.