Changeset d2c8533 in mainline for uspace/srv/fs/ext4fs/ext4fs_ops.c
- Timestamp:
- 2017-05-08T20:38:47Z (8 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- f066a87
- Parents:
- 582a0b8
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/fs/ext4fs/ext4fs_ops.c
r582a0b8 rd2c8533 915 915 * VFS operations. 916 916 */ 917 918 /** Probe operation. 919 * 920 * Try to get information about specified filesystem from device. 921 * 922 * @param sevice_id Service ID 923 * @param info Place to store information 924 * 925 * @return Error code 926 */ 927 static int ext4fs_fsprobe(service_id_t service_id, vfs_fs_probe_info_t *info) 928 { 929 return ENOTSUP; 930 } 917 931 918 932 /** Mount operation. … … 1520 1534 */ 1521 1535 vfs_out_ops_t ext4fs_ops = { 1536 .fsprobe = ext4fs_fsprobe, 1522 1537 .mounted = ext4fs_mounted, 1523 1538 .unmounted = ext4fs_unmounted,
Note:
See TracChangeset
for help on using the changeset viewer.