]> CyberLeo.Net >> Repos - FreeBSD/releng/10.0.git/blob - sbin/geom/class/mountver/gmountver.8
- Copy stable/10 (r259064) to releng/10.0 as part of the
[FreeBSD/releng/10.0.git] / sbin / geom / class / mountver / gmountver.8
1 .\"-
2 .\" Copyright (c) 2010 Edward Tomasz Napierala
3 .\" All rights reserved.
4 .\"
5 .\" Redistribution and use in source and binary forms, with or without
6 .\" modification, are permitted provided that the following conditions
7 .\" are met:
8 .\" 1. Redistributions of source code must retain the above copyright
9 .\"    notice, this list of conditions and the following disclaimer.
10 .\" 2. Redistributions in binary form must reproduce the above copyright
11 .\"    notice, this list of conditions and the following disclaimer in the
12 .\"    documentation and/or other materials provided with the distribution.
13 .\"
14 .\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24 .\" SUCH DAMAGE.
25 .\"
26 .\" $FreeBSD$
27 .\"
28 .Dd January 14, 2010
29 .Dt GMOUNTVER 8
30 .Os
31 .Sh NAME
32 .Nm gmountver
33 .Nd "control utility for disk mount verification GEOM class"
34 .Sh SYNOPSIS
35 .Nm
36 .Cm create
37 .Op Fl v
38 .Ar dev ...
39 .Nm
40 .Cm destroy
41 .Op Fl fv
42 .Ar prov ...
43 .Nm
44 .Cm list
45 .Nm
46 .Cm status
47 .Op Fl s Ar name
48 .Nm
49 .Cm load
50 .Op Fl v
51 .Nm
52 .Cm unload
53 .Op Fl v
54 .Sh DESCRIPTION
55 The
56 .Nm
57 utility is used to control the mount verification GEOM class.
58 When configured, it passes all the I/O requests to the underlying provider.
59 When the underlying provider disappears - for example because the disk device
60 got disconnected - it queues all the I/O requests and waits for the provider
61 to reappear.
62 When that happens, it attaches to it and sends the queued requests.
63 .Pp
64 The first argument to
65 .Nm
66 indicates an action to be performed:
67 .Bl -tag -width ".Cm destroy"
68 .It Cm create
69 Cache the given devices with specified
70 .Ar name .
71 The kernel module
72 .Pa geom_mountver.ko
73 will be loaded if it is not loaded already.
74 .It Cm destroy
75 Destroy
76 .Ar name .
77 .It Cm list
78 See
79 .Xr geom 8 .
80 .It Cm status
81 See
82 .Xr geom 8 .
83 .It Cm load
84 See
85 .Xr geom 8 .
86 .It Cm unload
87 See
88 .Xr geom 8 .
89 .El
90 .Pp
91 Additional options:
92 .Bl -tag -width indent
93 .It Fl f
94 Force the removal of the specified mountver device.
95 .It Fl v
96 Be more verbose.
97 .El
98 .Sh SYSCTL VARIABLES
99 The following
100 .Xr sysctl 8
101 variables can be used to control the behavior of the
102 .Nm MOUNTVER
103 GEOM class.
104 The default value is shown next to each variable.
105 .Bl -tag -width indent
106 .It Va kern.geom.mountver.debug : No 0
107 Debug level of the
108 .Nm MOUNTVER
109 GEOM class.
110 This can be set to a number between 0 and 3 inclusive.
111 If set to 0 minimal debug information is printed, and if set to 3 the
112 maximum amount of debug information is printed.
113 .It Va kern.geom.mountver.check.check_ident : No 1
114 This can be set to 0 or 1.
115 If set to 0,
116 .Nm
117 will reattach to the device even if the device reports a different disk ID.
118 .El
119 .Sh EXIT STATUS
120 Exit status is 0 on success, and 1 if the command fails.
121 .Sh SEE ALSO
122 .Xr geom 4 ,
123 .Xr geom 8
124 .Sh HISTORY
125 The
126 .Nm
127 utility appeared in
128 .Fx 9.0 .
129 .Sh AUTHORS
130 .An Edward Tomasz Napierala Aq trasz@FreeBSD.org