Rev 2593 | Rev 2619 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 2593 | Rev 2596 | ||
---|---|---|---|
Line 122... | Line 122... | ||
122 | * Initialize the list of registered file systems. |
122 | * Initialize the list of registered file systems. |
123 | */ |
123 | */ |
124 | list_initialize(&fs_head); |
124 | list_initialize(&fs_head); |
125 | 125 | ||
126 | /* |
126 | /* |
- | 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 | /* |
|
127 | * Allocate and initialize the Path Lookup Buffer. |
135 | * Allocate and initialize the Path Lookup Buffer. |
128 | */ |
136 | */ |
129 | list_initialize(&plb_head); |
137 | list_initialize(&plb_head); |
130 | plb = as_get_mappable_page(PLB_SIZE); |
138 | plb = as_get_mappable_page(PLB_SIZE); |
131 | if (!plb) { |
139 | if (!plb) { |