Changeset 9a5ccfb3 in mainline for uspace/srv/fs/fat/fat.h


Ignore:
Timestamp:
2008-05-05T20:16:36Z (17 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
4797132
Parents:
0c1ad7ac
Message:

Add hash table for used fat_idx_t structures and implement fat_idx_map().

File:
1 edited

Legend:

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

    r0c1ad7ac r9a5ccfb3  
    176176 */
    177177typedef struct {
     178        /** Used indices hash table link. */
     179        link_t          uh_link;
     180
    178181        dev_handle_t    dev_handle;
    179182        fs_index_t      index;
    180183        /**
    181          * Parent first cluster.
     184         * Parent node's first cluster.
    182185         * Zero is used if this node is not linked, in which case nodep must
    183186         * contain a pointer to the in-core node structure.
     
    185188         */
    186189        fat_cluster_t   pfc;
    187         /** Parent directory entry index. */
     190        /** Directory entry index within the parent node. */
    188191        unsigned        pdi;
    189192        /** Pointer to in-core node instance. */
Note: See TracChangeset for help on using the changeset viewer.