Changeset 8c18b7a in mainline
- Timestamp:
- 2011-08-02T19:58:37Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 36c2679
- Parents:
- 04a153f
- Location:
- uspace/srv/fs/exfat
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/fs/exfat/exfat.c
r04a153f r8c18b7a 110 110 break; 111 111 case VFS_OUT_LOOKUP: 112 /* exfat_lookup(callid, &call); */ 113 async_answer_0(callid, ENOTSUP); 112 exfat_lookup(callid, &call); 114 113 break; 115 114 case VFS_OUT_READ: -
uspace/srv/fs/exfat/exfat_ops.c
r04a153f r8c18b7a 942 942 */ 943 943 944 void exfat_lookup(ipc_callid_t rid, ipc_call_t *request) 945 { 946 libfs_lookup(&exfat_libfs_ops, exfat_reg.fs_handle, rid, request); 947 } 948 949 944 950 /** 945 951 * @}
Note:
See TracChangeset
for help on using the changeset viewer.