Lines Matching refs:mount
98 request is made to mount a filesystem onto a directory in your namespace,
99 the VFS will call the appropriate mount() method for the specific
100 filesystem. New vfsmount referring to the tree returned by ->mount()
117 struct dentry *(*mount) (struct file_system_type *, int,
132 mount: the method to call when a new instance of this
145 The mount() method has the following arguments:
150 int flags: mount flags
154 void *data: arbitrary mount options, usually comes as an ASCII
157 The mount() method must return the root dentry of the tree requested by
161 The arguments match those of mount(2) and their interpretation
167 ->mount() may choose to return a subtree of existing filesystem - it
173 mount() method fills in is the "s_op" field. This is a pointer to
177 Usually, a filesystem uses one of the generic mount() implementations
180 mount_bdev: mount a filesystem residing on a block device
182 mount_nodev: mount a filesystem that is not backed by a device
184 mount_single: mount a filesystem which shares the instance between
192 void *data: arbitrary mount options, usually comes as an ASCII
295 show_options: called by the VFS to show mount options for
1020 This should create a new VFS mount record and return the record to the
1023 VFS mount record to provide inheritable mount parameters. NULL should
1029 If a vfsmount is returned, the caller will attempt to mount it on the
1117 On mount and remount the filesystem is passed a string containing a
1118 comma separated list of mount options. The options can have either of
1131 If a filesystem accepts mount options, it must define show_options()
1140 Options used only internally between a mount helper and the kernel
1146 mount can be accurately replicated (e.g. umounting and mounting again)
1149 A simple method of saving options at mount/remount time and showing