Changeset c84146d3 in mainline for uspace/lib/fs/libfs.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/lib/fs/libfs.c

    rb86a32e rc84146d3  
    864864        if (NULL != ops->size_block)   
    865865                statfs.f_bsize = ops->size_block(service_id);
    866         if (NULL != ops->total_block)
    867                 statfs.f_blocks = ops->total_block(service_id);
    868         if (NULL != ops->free_block)
    869                 statfs.f_bfree = ops->free_block(service_id);
     866        if (NULL != ops->total_block_count)
     867                statfs.f_blocks = ops->total_block_count(service_id);
     868        if (NULL != ops->free_block_count)
     869                statfs.f_bfree = ops->free_block_count(service_id);
    870870       
    871871        ops->node_put(fn);
Note: See TracChangeset for help on using the changeset viewer.