Changeset e6da6d5 in mainline
- Timestamp:
- 2011-11-06T17:46:26Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- c6d9d49
- Parents:
- 41047bf
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/vfs/vfs_ops.c
r41047bf re6da6d5 1377 1377 rc = ENOTSUP; 1378 1378 1379 if (!async_data_read_receive(&callid, &len)) 1379 if (!async_data_read_receive(&callid, &len)) { 1380 async_answer_0(callid, rc); 1380 1381 goto exit; 1382 } 1381 1383 1382 1384 (void) async_data_read_finalize(callid, mtab_ent->mp, 1383 1385 str_size(mtab_ent->mp)); 1384 1386 1385 if (!async_data_read_receive(&callid, &len)) 1387 if (!async_data_read_receive(&callid, &len)) { 1388 async_answer_0(callid, rc); 1386 1389 goto exit; 1390 } 1387 1391 1388 1392 (void) async_data_read_finalize(callid, mtab_ent->opts, 1389 1393 str_size(mtab_ent->opts)); 1390 1394 1391 if (!async_data_read_receive(&callid, &len)) 1395 if (!async_data_read_receive(&callid, &len)) { 1396 async_answer_0(callid, rc); 1392 1397 goto exit; 1398 } 1393 1399 1394 1400 (void) async_data_read_finalize(callid, mtab_ent->fs_name, … … 1398 1404 1399 1405 if (IPC_GET_IMETHOD(data) != VFS_IN_PING) { 1400 rc = ENOTSUP;1401 1406 async_answer_0(callid, rc); 1402 1407 goto exit;
Note:
See TracChangeset
for help on using the changeset viewer.