Changes between Version 6 and Version 7 of FSDesign
- Timestamp:
- 2009-07-23T19:04:36Z (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
FSDesign
v6 v7 42 42 43 43 If the argument is a file path, VFS uses the ''vfs_lookup_internal()'' function to 44 translate the path into the so called VFS triplet. A VFS triplet is an ordered 44 translate the path into the so called lookup result represented by the ''vfs_lookup_res_t'' 45 type. The lookup result predominantly contains a VFS triplet, which is an ordered 45 46 triplet containing a global handle of the file system instance, a global device 46 47 handle and a file index. Thus a VFS triplet uniquely identifies a file on … … 59 60 node, for which there is the ''vfs_node_t'' type. Thus, a VFS node represents 60 61 some file which is referenced by VFS. 62 63 The VFS server calls the ''vfs_node_get()'' function in order to get a VFS node 64 for the corresponding lookup result. This function creates a new VFS node or 65 adds a reference to an existing one. VFS nodes are organized in a hash table with 66 the VFS triplet as a search key.