Changeset 00aece0 in mainline for uspace/srv/fs/locfs/locfs_ops.c
- Timestamp:
- 2012-02-18T16:47:38Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 4449c6c
- Parents:
- bd5f3b7 (diff), f943dd3 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/fs/locfs/locfs_ops.c
rbd5f3b7 r00aece0 418 418 } 419 419 420 static service_id_t locfs_ device_get(fs_node_t *fn)420 static service_id_t locfs_service_get(fs_node_t *fn) 421 421 { 422 422 locfs_node_t *node = (locfs_node_t *) fn->data; … … 445 445 .is_directory = locfs_is_directory, 446 446 .is_file = locfs_is_file, 447 . device_get = locfs_device_get447 .service_get = locfs_service_get 448 448 }; 449 449 … … 593 593 sysarg_t rc; 594 594 async_wait_for(msg, &rc); 595 596 /* Do not propagate EHANGUP back to VFS. */ 597 if ((int) rc == EHANGUP) 598 rc = ENOTSUP; 595 599 596 600 *rbytes = IPC_GET_ARG1(answer); … … 655 659 sysarg_t rc; 656 660 async_wait_for(msg, &rc); 661 662 /* Do not propagate EHANGUP back to VFS. */ 663 if ((int) rc == EHANGUP) 664 rc = ENOTSUP; 657 665 658 666 *wbytes = IPC_GET_ARG1(answer);
Note:
See TracChangeset
for help on using the changeset viewer.