Changes in uspace/srv/vfs/vfs.c [3e6a98c5:fbcdeb8] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/vfs/vfs.c
r3e6a98c5 rfbcdeb8 44 44 #include <errno.h> 45 45 #include <stdio.h> 46 #include < stdbool.h>46 #include <bool.h> 47 47 #include <str.h> 48 48 #include <as.h> … … 159 159 int main(int argc, char **argv) 160 160 { 161 printf( "%s: HelenOS VFS server\n", NAME);161 printf(NAME ": HelenOS VFS server\n"); 162 162 163 163 /* … … 165 165 */ 166 166 if (!vfs_nodes_init()) { 167 printf("%s: Failed to initialize VFS node hash table\n", 168 NAME); 167 printf(NAME ": Failed to initialize VFS node hash table\n"); 169 168 return ENOMEM; 170 169 } … … 173 172 * Allocate and initialize the Path Lookup Buffer. 174 173 */ 175 plb = as_area_create( AS_AREA_ANY, PLB_SIZE,174 plb = as_area_create((void *) -1, PLB_SIZE, 176 175 AS_AREA_READ | AS_AREA_WRITE | AS_AREA_CACHEABLE); 177 if (plb == AS_MAP_FAILED) {178 printf( "%s: Cannot create address space area\n", NAME);176 if (plb == (void *) -1) { 177 printf(NAME ": Cannot create address space area\n"); 179 178 return ENOMEM; 180 179 } … … 197 196 async_set_interrupt_received(notification_received); 198 197 event_task_subscribe(EVENT_TASK_STATE_CHANGE, VFS_TASK_STATE_CHANGE); 199 198 200 199 /* 201 200 * Register at the naming service. 202 201 */ 203 int rc = service_register(SERVICE_VFS); 204 if (rc != EOK) { 202 if (service_register(SERVICE_VFS) != EOK) { 205 203 printf("%s: Cannot register VFS service\n", NAME); 206 return rc;204 return EINVAL; 207 205 } 208 206 … … 210 208 * Start accepting connections. 211 209 */ 212 printf( "%s: Accepting connections\n", NAME);210 printf(NAME ": Accepting connections\n"); 213 211 async_manager(); 214 212 return 0;
Note:
See TracChangeset
for help on using the changeset viewer.