Changeset 9fc72fb3 in mainline for uspace/lib/ext4/libext4_filesystem.c
- Timestamp:
- 2012-05-03T17:32:06Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 2226cc3
- Parents:
- e40ece98
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/ext4/libext4_filesystem.c
re40ece98 r9fc72fb3 41 41 #include "libext4.h" 42 42 43 /** TODO comment 44 * 45 */ 43 46 int ext4_filesystem_init(ext4_filesystem_t *fs, service_id_t service_id) 44 47 { … … 90 93 } 91 94 95 /** TODO comment 96 * 97 */ 92 98 int ext4_filesystem_fini(ext4_filesystem_t *fs, bool write_sb) 93 99 { … … 104 110 } 105 111 112 /** TODO comment 113 * 114 */ 106 115 int ext4_filesystem_check_sanity(ext4_filesystem_t *fs) 107 116 { … … 116 125 } 117 126 127 /** TODO comment 128 * 129 */ 118 130 int ext4_filesystem_check_features(ext4_filesystem_t *fs, bool *o_read_only) 119 131 { … … 142 154 } 143 155 156 /** TODO comment 157 * 158 */ 144 159 int ext4_filesystem_get_block_group_ref(ext4_filesystem_t *fs, uint32_t bgid, 145 160 ext4_block_group_ref_t **ref) … … 178 193 } 179 194 195 /** TODO comment 196 * 197 */ 180 198 static uint16_t ext4_filesystem_bg_checksum(ext4_superblock_t *sb, uint32_t bgid, 181 199 ext4_block_group_t *bg) … … 210 228 } 211 229 212 230 /** TODO comment 231 * 232 */ 213 233 int ext4_filesystem_put_block_group_ref(ext4_block_group_ref_t *ref) 214 234 { … … 230 250 } 231 251 252 /** TODO comment 253 * 254 */ 232 255 int ext4_filesystem_get_inode_ref(ext4_filesystem_t *fs, uint32_t index, 233 256 ext4_inode_ref_t **ref) … … 291 314 } 292 315 293 316 /** TODO comment 317 * 318 */ 294 319 int ext4_filesystem_put_inode_ref(ext4_inode_ref_t *ref) 295 320 { … … 306 331 } 307 332 333 /** TODO comment 334 * 335 */ 308 336 int ext4_filesystem_alloc_inode(ext4_filesystem_t *fs, 309 337 ext4_inode_ref_t **inode_ref, int flags) … … 379 407 } 380 408 409 /** TODO comment 410 * 411 */ 381 412 int ext4_filesystem_free_inode(ext4_inode_ref_t *inode_ref) 382 413 { … … 514 545 } 515 546 547 /** TODO comment 548 * 549 */ 516 550 int ext4_filesystem_truncate_inode( 517 551 ext4_inode_ref_t *inode_ref, aoff64_t new_size) … … 575 609 } 576 610 611 /** TODO comment 612 * 613 */ 577 614 int ext4_filesystem_get_inode_data_block_index(ext4_inode_ref_t *inode_ref, 578 615 aoff64_t iblock, uint32_t *fblock) … … 678 715 } 679 716 680 717 /** TODO comment 718 * 719 */ 681 720 int ext4_filesystem_set_inode_data_block_index(ext4_inode_ref_t *inode_ref, 682 721 aoff64_t iblock, uint32_t fblock) … … 816 855 } 817 856 857 /** TODO comment 858 * 859 */ 818 860 int ext4_filesystem_release_inode_block( 819 861 ext4_inode_ref_t *inode_ref, uint32_t iblock) … … 910 952 } 911 953 954 /** TODO comment 955 * 956 */ 912 957 int ext4_filesystem_append_inode_block(ext4_inode_ref_t *inode_ref, 913 958 uint32_t *fblock, uint32_t *iblock) … … 959 1004 } 960 1005 1006 /** TODO comment 1007 * 1008 */ 961 1009 int ext4_filesystem_add_orphan(ext4_inode_ref_t *inode_ref) 962 1010 { … … 971 1019 } 972 1020 1021 /** TODO comment 1022 * 1023 */ 973 1024 int ext4_filesystem_delete_orphan(ext4_inode_ref_t *inode_ref) 974 1025 {
Note:
See TracChangeset
for help on using the changeset viewer.