Changeset 67632f7 in mainline for uspace/app/df/df.c


Ignore:
Timestamp:
2013-07-11T20:03:39Z (12 years ago)
Author:
Manuele Conti <conti.ma@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
e8f0158
Parents:
e6edc8d1
Message:

Add total_block and free_block operation.
Implement total_block and free_block operation for mfs.
Fix df application output.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/df/df.c

    re6edc8d1 r67632f7  
    6464                        mtab_ent->fs_name,
    6565                        (long long) st.f_blocks * st.f_bsize,
     66                        (long long) (st.f_blocks - st.f_bfree) * st.f_bsize,
    6667                        (long long) st.f_bfree * st.f_bsize,
    67                         (long long) (st.f_blocks - st.f_bfree) * st.f_bsize,
    6868                        (st.f_blocks)?PERCENTAGE(st.f_blocks - st.f_bfree, st.f_blocks):0L,
    6969                        mtab_ent->mp);
Note: See TracChangeset for help on using the changeset viewer.