Changeset c84146d3 in mainline for uspace/srv/fs/ext4fs/ext4fs_ops.c


Ignore:
Timestamp:
2013-07-15T21:47:50Z (11 years ago)
Author:
Manuele Conti <conti.ma@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
e2f706e
Parents:
b86a32e
Message:

Replace name operations from total_block and free_block to total_block_count and
free_block_count

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/fs/ext4fs/ext4fs_ops.c

    rb86a32e rc84146d3  
    102102static service_id_t ext4fs_service_get(fs_node_t *node);
    103103static uint32_t ext4fs_size_block(service_id_t);
    104 static uint64_t ext4fs_total_block(service_id_t);
    105 static uint64_t ext4fs_free_block(service_id_t);
     104static uint64_t ext4fs_total_block_count(service_id_t);
     105static uint64_t ext4fs_free_block_count(service_id_t);
    106106
    107107/* Static variables */
     
    856856}
    857857
    858 uint64_t ext4fs_total_block(service_id_t service_id)
     858uint64_t ext4fs_total_block_count(service_id_t service_id)
    859859{
    860860        ext4fs_instance_t *inst;
     
    871871}
    872872
    873 uint64_t ext4fs_free_block(service_id_t service_id)
     873uint64_t ext4fs_free_block_count(service_id_t service_id)
    874874{
    875875        ext4fs_instance_t *inst;
     
    907907        .service_get = ext4fs_service_get,
    908908        .size_block = ext4fs_size_block,
    909         .total_block = ext4fs_total_block,
    910         .free_block = ext4fs_free_block
     909        .total_block_count = ext4fs_total_block_count,
     910        .free_block_count = ext4fs_free_block_count
    911911};
    912912
Note: See TracChangeset for help on using the changeset viewer.