Changeset c84146d3 in mainline for uspace/srv/fs/exfat/exfat_ops.c


Ignore:
Timestamp:
2013-07-15T21:47:50Z (12 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/exfat/exfat_ops.c

    rb86a32e rc84146d3  
    9090static service_id_t exfat_service_get(fs_node_t *node);
    9191static uint32_t exfat_size_block(service_id_t);
    92 static uint64_t exfat_total_block(service_id_t);
    93 static uint64_t exfat_free_block(service_id_t);
     92static uint64_t exfat_total_block_count(service_id_t);
     93static uint64_t exfat_free_block_count(service_id_t);
    9494
    9595/*
     
    923923}
    924924
    925 uint64_t exfat_total_block(service_id_t service_id)
     925uint64_t exfat_total_block_count(service_id_t service_id)
    926926{
    927927        exfat_bs_t *bs;
     
    933933}
    934934
    935 uint64_t exfat_free_block(service_id_t service_id)
     935uint64_t exfat_free_block_count(service_id_t service_id)
    936936{
    937937        exfat_bs_t *bs;
     
    963963        .service_get = exfat_service_get,
    964964        .size_block = exfat_size_block,
    965         .total_block = exfat_total_block,
    966         .free_block = exfat_free_block
     965        .total_block_count = exfat_total_block_count,
     966        .free_block_count = exfat_free_block_count
    967967};
    968968
Note: See TracChangeset for help on using the changeset viewer.