Fix mdoc(7)/man(7) mix up.
[netbsd-mini2440.git] / share / man / man4 / fss.4
blob81c249d79d73642c51e056b313859289380a1b9b
1 .\"     $NetBSD: fss.4,v 1.11 2008/09/15 07:58:48 hannken Exp $ */
2 .\"
3 .\"
4 .\" Copyright (c) 2003 The NetBSD Foundation, Inc.
5 .\" All rights reserved.
6 .\"
7 .\" This code is derived from software contributed to The NetBSD Foundation
8 .\" by Juergen Hannken-Illjes.
9 .\"
10 .\" Redistribution and use in source and binary forms, with or without
11 .\" modification, are permitted provided that the following conditions
12 .\" are met:
13 .\" 1. Redistributions of source code must retain the above copyright
14 .\"    notice, this list of conditions and the following disclaimer.
15 .\" 2. Redistributions in binary form must reproduce the above copyright
16 .\"    notice, this list of conditions and the following disclaimer in the
17 .\"    documentation and/or other materials provided with the distribution.
18 .\"
19 .\" THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
20 .\" ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
21 .\" TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
22 .\" PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
23 .\" BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24 .\" CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25 .\" SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26 .\" INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27 .\" CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28 .\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29 .\" POSSIBILITY OF SUCH DAMAGE.
30 .\"
31 .Dd September 21, 2008
32 .Dt FSS 4
33 .Os
34 .Sh NAME
35 .Nm fss
36 .Nd file system snapshot device
37 .Sh SYNOPSIS
38 .Cd "pseudo-device fss 4"
39 .Sh DESCRIPTION
40 The
41 .Nm
42 driver provides a read-only interface to the snapshot of a currently
43 mounted file system.
44 Reading from a
45 .Nm
46 device gives the view of the file system when the snapshot was taken.
47 It can be configured via
48 .Xr ioctl 2 .
49 .Sh IOCTLS
50 The
51 .Xr ioctl 2
52 command codes below are defined in
53 .Aq Pa sys/dev/fssvar.h .
54 .Pp
55 The (third) argument to
56 .Xr ioctl 2
57 should be a pointer to the type indicated.
58 .Bl -tag -width 8n
59 .It Dv FSSIOCSET(struct fss_set)
60 Configures a
61 .Nm
62 device.
63 .Bd -literal -offset indent
64 struct fss_set {
65         char *fss_mount;
66         char *fss_bstore;
67         blksize_t fss_csize;
69 .Ed
70 .Pp
71 The struct element
72 .Va fss_mount
73 is the mount point of the file system.
74 The struct element
75 .Va fss_bstore
76 is either a regular file or a raw disk device where data overwritten on
77 the file system will be saved.
78 The struct element
79 .Va fss_csize
80 is the preferred size of this data.
81 .It Dv FSSIOCGET(struct fss_get)
82 Gets the status of a
83 .Nm
84 device.
85 .Bd -literal -offset indent
86 struct fss_get {
87         char fsg_mount[MNAMELEN];
88         struct timeval fsg_time;
89         blksize_t fsg_csize;
90         blkcnt_t fsg_mount_size;
91         blkcnt_t fsg_bs_size;
93 .Ed
94 The struct element
95 .Va fsg_mount
96 is the mount point of the file system.
97 The struct element
98 .Va fsg_time
99 is the time this snapshot was taken.
100 The struct element
101 .Va fsg_csize
102 is the current size of data clusters.
103 The struct element
104 .Va fsg_mount_size
105 is the number of clusters of the file system.
106 The struct element
107 .Va fsg_bs_size
108 is the number of clusters written to the backing store.
109 .It Dv FSSIOCCLR
110 Unconfigures a
112 device.
113 .It Dv FSSIOFSET(int)
114 Sets the flags of a
116 device.
117 Possible flags are:
118 .Bl -tag -width Dv
119 .It Dv FSS_UNCONFIG_ON_CLOSE
120 Unconfigure the
122 device on the last close.
124 .It Dv FSSIOFGET(int)
125 Gets the flags of a
127 device.
129 .Sh KERNEL THREADS
130 For each active snapshot device there is a kernel thread
131 that handles the backing store.
132 This thread is named
133 .Va fssN
134 where
135 .Va N
136 is the device minor number.
137 .Sh FILES
138 .Bl -tag -width /dev/rfss? -compact
139 .It Pa /dev/rfss?
140 .It Pa /dev/fss?
142 .Sh SEE ALSO
143 .Xr fssconfig 8 ,
144 .Xr mount 8 ,
145 .Xr umount 8
146 .Sh HISTORY
149 device appeared in
150 .Nx 2.0 .
151 .Sh BUGS
152 This driver is
153 .Em experimental .
154 Be sure you have a backup before you use it.