Changeset d2663d8 in mainline for uspace/srv/fs/mfs/mfs.h


Ignore:
Timestamp:
2013-09-13T16:02:09Z (11 years ago)
Author:
Maurizio Lombardi <m.lombardi85@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
8c5ba67
Parents:
cc8044e (diff), fd7dbbb (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

merge mfs changes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/fs/mfs/mfs.h

    rcc8044e rd2663d8  
    4444#include <errno.h>
    4545#include <assert.h>
     46#include <stdbool.h>
    4647#include "../../vfs/vfs.h"
    4748
     
    105106        unsigned isearch;
    106107        unsigned zsearch;
     108
     109        /* Indicates wether if the cached number of free zones
     110         * is to be considered valid or not.
     111         */
     112        bool nfree_zones_valid;
     113        /* Cached number of free zones, used to avoid to scan
     114         * the whole bitmap every time the mfs_free_block_count()
     115         * is invoked.
     116         */
     117        unsigned nfree_zones;
    107118};
    108119
Note: See TracChangeset for help on using the changeset viewer.