Nuke unused macro and comment
[dragonfly.git] / sbin / mount_hammer / mount_hammer.8
blob6b87cbd96707dc21a5b5e635e73922b3782f9011
1 .\" Copyright (c) 2007 The DragonFly Project.  All rights reserved.
2 .\" 
3 .\" This code is derived from software contributed to The DragonFly Project
4 .\" by Matthew Dillon <dillon@backplane.com>
5 .\" 
6 .\" Redistribution and use in source and binary forms, with or without
7 .\" modification, are permitted provided that the following conditions
8 .\" are met:
9 .\" 
10 .\" 1. Redistributions of source code must retain the above copyright
11 .\"    notice, this list of conditions and the following disclaimer.
12 .\" 2. Redistributions in binary form must reproduce the above copyright
13 .\"    notice, this list of conditions and the following disclaimer in
14 .\"    the documentation and/or other materials provided with the
15 .\"    distribution.
16 .\" 3. Neither the name of The DragonFly Project nor the names of its
17 .\"    contributors may be used to endorse or promote products derived
18 .\"    from this software without specific, prior written permission.
19 .\" 
20 .\" THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21 .\" ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22 .\" LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
23 .\" FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE
24 .\" COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
25 .\" INCIDENTAL, SPECIAL, EXEMPLARY OR CONSEQUENTIAL DAMAGES (INCLUDING,
26 .\" BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
27 .\" LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
28 .\" AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
29 .\" OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
30 .\" OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 .\" SUCH DAMAGE.
32 .\" 
33 .\" $DragonFly: src/sbin/mount_hammer/mount_hammer.8,v 1.9 2008/07/03 06:36:27 dillon Exp $
34 .Dd June 24, 2008
35 .Dt MOUNT_HAMMER 8
36 .Os
37 .Sh NAME
38 .Nm mount_hammer
39 .Nd mount a HAMMER file system
40 .Sh SYNOPSIS
41 .Nm
42 .Op Fl o Ar mount-options
43 .Op Fl T Ar transactionid
44 .Ar special ...
45 .Ar mount-point
46 .Nm
47 .Op Fl u
48 .Op Fl o Ar mount-options
49 .Ar mount-point
50 .Sh DESCRIPTION
51 The
52 .Nm
53 utility mounts a HAMMER filesystem backed by one or more block devices.
54 .Pp
55 The options are as follows:
56 .Bl -tag -width indent
57 .It Fl o Ar mount-options
58 Specify mount options, which are a comma delimited set of options (see
59 .Xr mount 8 ) .
60 Supported mount options are:
61 .Bl -tag -width indent
62 .It Ar ro
63 Issue a read-only mount.
64 .It Ar nohistory
65 Put the entire filesystem in no-history mode.  Change history is not
66 retained.
67 Use of this option may increase the overhead of doing mirroring.
68 This option is generally only used in an emergency.
69 .El
70 .It Fl T Ar transactionid
71 Mount the filesystem as-of a particular
72 transaction id.
73 The mount will automatically be made read-only.
74 The
75 .Ar transactionid
76 must be specified as a 64 bit hex value prefixed with "0x".
77 .It Fl u
78 Update the mount point.  This is typically used to upgrade a mount to
79 read-write or downgrade it to read-only.
80 .El
81 .Sh NOTES
82 Note that issuing a read-only mount which requires UNDOs to be run will
83 still run the UNDOs, but will not flush the buffer cache buffers until/if
84 the mount is updated to read-write.
85 .Sh EXAMPLES
86 .Bd -literal -offset indent
87 mount_hammer -o ro,noatime /dev/ad0s1d /dev/ad1s1d /mnt
88 .Ed
89 .Pp
90 Mount a hammer filesystem made up of two volumes onto
91 .Pa /mnt .
92 .Sh DIAGNOSTICS
93 Exit status is 0 on success and 1 on error.
94 .Sh SEE ALSO
95 .Xr disklabel 8 ,
96 .Xr fdisk 8 ,
97 .Xr hammer 8 ,
98 .Xr newfs_hammer 8
99 .Sh HISTORY
102 utility first appeared in
103 .Dx 1.11 .
104 .Sh AUTHORS
105 .An Matthew Dillon Aq dillon@backplane.com