Rev 2756 | Rev 2760 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 2756 | Rev 2758 | ||
|---|---|---|---|
| Line 43... | Line 43... | ||
| 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 | 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 *parent; |
- | |
| 49 | struct tmpfs_dentry *sibling; |
48 | struct tmpfs_dentry *sibling; |
| 50 | struct tmpfs_dentry *child; |
49 | struct tmpfs_dentry *child; |
| 51 | char *name; |
50 | char *name; |
| 52 | enum { |
51 | enum { |
| 53 | TMPFS_NONE, |
52 | TMPFS_NONE, |