Rev 2758 | Rev 2770 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 2758 | Rev 2760 | ||
|---|---|---|---|
| Line 45... | Line 45... | ||
| 45 | typedef struct tmpfs_dentry { |
45 | typedef struct tmpfs_dentry { |
| 46 | unsigned long index; /**< TMPFS node index. */ |
46 | unsigned long 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 | char *name; |
50 | hash_table_t names; /**< All names linking to this TMPFS node. */ |
| 51 | enum { |
51 | enum { |
| 52 | TMPFS_NONE, |
52 | TMPFS_NONE, |
| 53 | TMPFS_FILE, |
53 | TMPFS_FILE, |
| 54 | TMPFS_DIRECTORY |
54 | TMPFS_DIRECTORY |
| 55 | } type; |
55 | } type; |