Changes between Version 5 and Version 6 of FSDesign
- Timestamp:
- 2009-07-23T18:48:06Z (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
FSDesign
v5 v6 31 31 == VFS server == #FSDesignVFS 32 32 33 The VFS server is the focal point ofand also the most complex element of33 The VFS server is the focal point and also the most complex element of 34 34 the file system support in the HelenOS operating system. It exists as a 35 standalone user task. We cantalk about the VFS frontend and VFS backend.35 standalone user task. We talk about the VFS frontend and VFS backend. 36 36 37 37 The frontend is responsible for accepting requests from the client tasks. … … 45 45 triplet containing a global handle of the file system instance, a global device 46 46 handle and a file index. Thus a VFS triplet uniquely identifies a file on 47 some file system instance. An example VFS triplet lookslike this:47 some file system instance. An example VFS triplet could look like this: 48 48 49 49 {{{ … … 53 53 In the above example, the VFS triplet describes a file on a file system which was 54 54 assigned number 2 by the VFS service, located on a device, which was assigned number 55 1 by the DEVMAP service, and which has a file-system dependentindex number 10. The55 1 by the DEVMAP service, and which has a file-system specific index number 10. The 56 56 last number is also known as i-node number in other operating systems. 57 57