Changeset 86437ec0 in rtems
- Timestamp:
- 10/25/99 17:42:51 (24 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 9ec462aa
- Parents:
- 6a27e08
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
doc/filesystem/mounting.t
r6a27e08 r86437ec0 61 61 @end example 62 62 63 @table @b 64 @item Node 65 The Node is used to produce a linked list of mount table entry nodes. 66 67 @item mt_point_node 68 The mt_point_node contains all information necessary to access the 69 directory where a filesystem is mounted onto. This element may contain 70 memory that is allocated during a path evaluation of the filesystem 71 containing the mountpoint directory. The generic code allows this 72 memory to be returned by unmount when the filesystem identified by 73 mt_fs_root is unmounted. 74 75 @item mt_fs_root 76 The mt_fs_root contains all information necessary to identify the root 77 of the mounted filesystem. The user is never allowed access to this 78 node by the generic code, but it is used to identify to the mounted 79 filesystem where to start evaluation of pathnames at. 80 81 @item options 82 XXX 83 84 @item fs_info 85 The fs_info element is a location available for use by the mounted file 86 system to identify unique things applicable to this instance of the file 87 system. For example the IMFS uses this space to provide node 88 identification that is unique for each instance (mounting) of the filesystem. 89 90 @item pathconf_limits_and_options 91 XXX 92 93 @item dev 94 This character string represents the device where the filesystem will reside. 95 96 @end table 97 63 98 @section Adding entries to the chain during mount 64 99 … … 73 108 extracted and the memory for this entry is freed. 74 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171
Note: See TracChangeset
for help on using the changeset viewer.