Rev 2760 | Rev 2958 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 2760 | Rev 2770 | ||
|---|---|---|---|
| Line 41... | Line 41... | ||
| 41 | #include <libadt/hash_table.h> |
41 | #include <libadt/hash_table.h> |
| 42 | 42 | ||
| 43 | #define dprintf(...) printf(__VA_ARGS__) |
43 | #define dprintf(...) printf(__VA_ARGS__) |
| 44 | 44 | ||
| 45 | typedef struct tmpfs_dentry { |
45 | typedef struct tmpfs_dentry { |
| 46 | unsigned long index; /**< TMPFS node index. */ |
46 | fs_index_t index; /**< TMPFS node index. */ |
| 47 | link_t dh_link; /**< Dentries hash table link. */ |
47 | link_t dh_link; /**< Dentries hash table link. */ |
| 48 | struct tmpfs_dentry *sibling; |
48 | struct tmpfs_dentry *sibling; |
| 49 | struct tmpfs_dentry *child; |
49 | struct tmpfs_dentry *child; |
| 50 | hash_table_t names; /**< All names linking to this TMPFS node. */ |
50 | hash_table_t names; /**< All names linking to this TMPFS node. */ |
| 51 | enum { |
51 | enum { |