Rev 3150 | Rev 3674 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 3150 | Rev 3153 | ||
---|---|---|---|
Line 63... | Line 63... | ||
63 | VFS_LAST_CMN, /* keep this the last member of this enum */ |
63 | VFS_LAST_CMN, /* keep this the last member of this enum */ |
64 | } vfs_request_cmn_t; |
64 | } vfs_request_cmn_t; |
65 | 65 | ||
66 | typedef enum { |
66 | typedef enum { |
67 | VFS_LOOKUP = VFS_LAST_CMN, |
67 | VFS_LOOKUP = VFS_LAST_CMN, |
- | 68 | VFS_MOUNTED, |
|
68 | VFS_DESTROY, |
69 | VFS_DESTROY, |
69 | VFS_LAST_CLNT, /* keep this the last member of this enum */ |
70 | VFS_LAST_CLNT, /* keep this the last member of this enum */ |
70 | } vfs_request_clnt_t; |
71 | } vfs_request_clnt_t; |
71 | 72 | ||
72 | typedef enum { |
73 | typedef enum { |
Line 242... | Line 243... | ||
242 | 243 | ||
243 | extern futex_t nodes_futex; |
244 | extern futex_t nodes_futex; |
244 | 245 | ||
245 | extern link_t fs_head; /**< List of registered file systems. */ |
246 | extern link_t fs_head; /**< List of registered file systems. */ |
246 | 247 | ||
247 | extern vfs_triplet_t rootfs; /**< Root node of the root file system. */ |
248 | extern vfs_pair_t rootfs; /**< Root file system. */ |
248 | 249 | ||
249 | #define MAX_PATH_LEN (64 * 1024) |
250 | #define MAX_PATH_LEN (64 * 1024) |
250 | 251 | ||
251 | #define PLB_SIZE (2 * MAX_PATH_LEN) |
252 | #define PLB_SIZE (2 * MAX_PATH_LEN) |
252 | 253 |