Ignore:
Timestamp:
2012-05-03T17:32:06Z (12 years ago)
Author:
Frantisek Princ <frantisek.princ@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
2226cc3
Parents:
e40ece98
Message:

added TODOs for comments and first part of superblock comments

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/ext4/libext4_filesystem.c

    re40ece98 r9fc72fb3  
    4141#include "libext4.h"
    4242
     43/** TODO comment
     44 *
     45 */
    4346int ext4_filesystem_init(ext4_filesystem_t *fs, service_id_t service_id)
    4447{
     
    9093}
    9194
     95/** TODO comment
     96 *
     97 */
    9298int ext4_filesystem_fini(ext4_filesystem_t *fs, bool write_sb)
    9399{
     
    104110}
    105111
     112/** TODO comment
     113 *
     114 */
    106115int ext4_filesystem_check_sanity(ext4_filesystem_t *fs)
    107116{
     
    116125}
    117126
     127/** TODO comment
     128 *
     129 */
    118130int ext4_filesystem_check_features(ext4_filesystem_t *fs, bool *o_read_only)
    119131{
     
    142154}
    143155
     156/** TODO comment
     157 *
     158 */
    144159int ext4_filesystem_get_block_group_ref(ext4_filesystem_t *fs, uint32_t bgid,
    145160    ext4_block_group_ref_t **ref)
     
    178193}
    179194
     195/** TODO comment
     196 *
     197 */
    180198static uint16_t ext4_filesystem_bg_checksum(ext4_superblock_t *sb, uint32_t bgid,
    181199                            ext4_block_group_t *bg)
     
    210228}
    211229
    212 
     230/** TODO comment
     231 *
     232 */
    213233int ext4_filesystem_put_block_group_ref(ext4_block_group_ref_t *ref)
    214234{
     
    230250}
    231251
     252/** TODO comment
     253 *
     254 */
    232255int ext4_filesystem_get_inode_ref(ext4_filesystem_t *fs, uint32_t index,
    233256    ext4_inode_ref_t **ref)
     
    291314}
    292315
    293 
     316/** TODO comment
     317 *
     318 */
    294319int ext4_filesystem_put_inode_ref(ext4_inode_ref_t *ref)
    295320{
     
    306331}
    307332
     333/** TODO comment
     334 *
     335 */
    308336int ext4_filesystem_alloc_inode(ext4_filesystem_t *fs,
    309337                ext4_inode_ref_t **inode_ref, int flags)
     
    379407}
    380408
     409/** TODO comment
     410 *
     411 */
    381412int ext4_filesystem_free_inode(ext4_inode_ref_t *inode_ref)
    382413{
     
    514545}
    515546
     547/** TODO comment
     548 *
     549 */
    516550int ext4_filesystem_truncate_inode(
    517551                ext4_inode_ref_t *inode_ref, aoff64_t new_size)
     
    575609}
    576610
     611/** TODO comment
     612 *
     613 */
    577614int ext4_filesystem_get_inode_data_block_index(ext4_inode_ref_t *inode_ref,
    578615                aoff64_t iblock, uint32_t *fblock)
     
    678715}
    679716
    680 
     717/** TODO comment
     718 *
     719 */
    681720int ext4_filesystem_set_inode_data_block_index(ext4_inode_ref_t *inode_ref,
    682721                aoff64_t iblock, uint32_t fblock)
     
    816855}
    817856
     857/** TODO comment
     858 *
     859 */
    818860int ext4_filesystem_release_inode_block(
    819861                ext4_inode_ref_t *inode_ref, uint32_t iblock)
     
    910952}
    911953
     954/** TODO comment
     955 *
     956 */
    912957int ext4_filesystem_append_inode_block(ext4_inode_ref_t *inode_ref,
    913958                uint32_t *fblock, uint32_t *iblock)
     
    9591004}
    9601005
     1006/** TODO comment
     1007 *
     1008 */
    9611009int ext4_filesystem_add_orphan(ext4_inode_ref_t *inode_ref)
    9621010{
     
    9711019}
    9721020
     1021/** TODO comment
     1022 *
     1023 */
    9731024int ext4_filesystem_delete_orphan(ext4_inode_ref_t *inode_ref)
    9741025{
Note: See TracChangeset for help on using the changeset viewer.