Changeset 86437ec0 in rtems


Ignore:
Timestamp:
10/25/99 17:42:51 (24 years ago)
Author:
Jennifer Averett <Jennifer.Averett@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
9ec462aa
Parents:
6a27e08
Message:

Added descriptions of the mount table entry elements.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • doc/filesystem/mounting.t

    r6a27e08 r86437ec0  
    6161@end example
    6262
     63@table @b
     64@item Node
     65The Node is used to produce a linked list of mount table entry nodes.
     66
     67@item mt_point_node
     68The mt_point_node contains all information necessary to access the
     69directory where a filesystem is mounted onto.  This element may contain
     70memory that is allocated during a path evaluation of the filesystem
     71containing the mountpoint directory.  The generic code allows this
     72memory to be returned by unmount when the filesystem identified by
     73mt_fs_root is unmounted. 
     74
     75@item mt_fs_root
     76The mt_fs_root contains all information necessary to identify the root
     77of the mounted filesystem. The user is never allowed access to this
     78node by the generic code, but it is used to identify to the mounted
     79filesystem where to start evaluation of pathnames at.
     80
     81@item options
     82XXX
     83
     84@item fs_info
     85The fs_info element is a location available for use by the mounted file
     86system to identify unique things applicable to this instance of the file
     87system.  For example the IMFS uses this space to provide node
     88identification that is unique for each instance (mounting) of the filesystem.
     89
     90@item pathconf_limits_and_options
     91XXX
     92
     93@item dev
     94This character string represents the device where the filesystem will reside.
     95
     96@end table
     97
    6398@section Adding entries to the chain during mount
    6499
     
    73108extracted and the memory for this entry is freed.
    74109
     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.