Changes in uspace/srv/fs/mfs/mfs.c [7a46bfe:6d4d883] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/fs/mfs/mfs.c
r7a46bfe r6d4d883 39 39 40 40 #include <ipc/services.h> 41 #include <stdlib.h> 42 #include <str.h> 41 43 #include <ns.h> 42 44 #include <async.h> … … 52 54 .concurrent_read_write = false, 53 55 .write_retains_size = false, 56 .instance = 0, 54 57 }; 55 58 … … 60 63 printf(NAME ": HelenOS Minix file system server\n"); 61 64 65 if (argc == 3) { 66 if (!str_cmp(argv[1], "--instance")) 67 mfs_vfs_info.instance = strtol(argv[2], NULL, 10); 68 else { 69 printf(NAME " Unrecognized parameters"); 70 rc = -1; 71 goto err; 72 } 73 } 74 62 75 async_sess_t *vfs_sess = service_connect_blocking(EXCHANGE_SERIALIZE, 63 76 SERVICE_VFS, 0, 0); 64 77 65 78 if (!vfs_sess) {
Note:
See TracChangeset
for help on using the changeset viewer.