Rev 4348 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 4348 | Rev 4389 | ||
|---|---|---|---|
| Line 164... | Line 164... | ||
| 164 | * L_UNLINK is used to remove leaves from the file system namespace. This flag |
164 | * L_UNLINK is used to remove leaves from the file system namespace. This flag |
| 165 | * cannot be passed directly by the client, but will be set by VFS during |
165 | * cannot be passed directly by the client, but will be set by VFS during |
| 166 | * VFS_UNLINK. |
166 | * VFS_UNLINK. |
| 167 | */ |
167 | */ |
| 168 | #define L_UNLINK 32 |
168 | #define L_UNLINK 32 |
| 169 | /** |
- | |
| 170 | * L_PARENT performs a lookup but returns the triplet of the parent node. |
- | |
| 171 | * This flag may not be combined with any other lookup flag. |
- | |
| 172 | */ |
- | |
| 173 | #define L_PARENT 64 |
- | |
| 174 | 169 | ||
| 175 | typedef enum vfs_node_type { |
170 | typedef enum vfs_node_type { |
| 176 | VFS_NODE_UNKNOWN, |
171 | VFS_NODE_UNKNOWN, |
| 177 | VFS_NODE_FILE, |
172 | VFS_NODE_FILE, |
| 178 | VFS_NODE_DIRECTORY, |
173 | VFS_NODE_DIRECTORY, |