View | Details | Raw Unified | Return to bug 31588
Collapse All | Expand All

(-)mount/mount.c (+1 lines)
Lines 107-112 Link Here
107
	{ MNT_NOCLUSTERW,	"noclusterw" },
107
	{ MNT_NOCLUSTERW,	"noclusterw" },
108
	{ MNT_SUIDDIR,		"suiddir" },
108
	{ MNT_SUIDDIR,		"suiddir" },
109
	{ MNT_SOFTDEP,		"soft-updates" },
109
	{ MNT_SOFTDEP,		"soft-updates" },
110
	{ MNT_IGNORE,		"ignore" },
110
	{ 0, NULL }
111
	{ 0, NULL }
111
};
112
};
112
113
(-)mount/mntopts.h (-1 / +3 lines)
Lines 56-61 Link Here
56
#define MOPT_NOCLUSTERR		{ "clusterr",	1, MNT_NOCLUSTERR, 0 }
56
#define MOPT_NOCLUSTERR		{ "clusterr",	1, MNT_NOCLUSTERR, 0 }
57
#define MOPT_NOCLUSTERW		{ "clusterw",	1, MNT_NOCLUSTERW, 0 }
57
#define MOPT_NOCLUSTERW		{ "clusterw",	1, MNT_NOCLUSTERW, 0 }
58
#define MOPT_SUIDDIR		{ "suiddir",	0, MNT_SUIDDIR, 0 }
58
#define MOPT_SUIDDIR		{ "suiddir",	0, MNT_SUIDDIR, 0 }
59
#define MOPT_IGNORE		{ "ignore",	0, MNT_IGNORE, 0 }
59
60
60
/* Control flags. */
61
/* Control flags. */
61
#define MOPT_FORCE		{ "force",	0, MNT_FORCE, 0 }
62
#define MOPT_FORCE		{ "force",	0, MNT_FORCE, 0 }
Lines 85-91 Link Here
85
	MOPT_RDONLY,							\
86
	MOPT_RDONLY,							\
86
	MOPT_UNION,							\
87
	MOPT_UNION,							\
87
	MOPT_NOCLUSTERR,						\
88
	MOPT_NOCLUSTERR,						\
88
	MOPT_NOCLUSTERW
89
	MOPT_NOCLUSTERW,                                                \
90
	MOPT_IGNORE
89
91
90
void getmntopts __P((const char *, const struct mntopt *, int *, int *));
92
void getmntopts __P((const char *, const struct mntopt *, int *, int *));
91
void rmslashes __P((char *, char *));
93
void rmslashes __P((char *, char *));
(-)mount/mount.8 (+8 lines)
Lines 135-140 Link Here
135
flag, this is the same as specifying all the options listed in the
135
flag, this is the same as specifying all the options listed in the
136
.Xr fstab 5
136
.Xr fstab 5
137
file for the filesystem.
137
file for the filesystem.
138
.It Cm ignore
139
This sets the MNT_IGNORE flag, which stops 
140
.Xr df 1
141
from displaying information on the filesystem unless
142
.Xr df 1
143
is called with the 
144
.Fl a 
145
option.
138
.It Cm noasync
146
.It Cm noasync
139
Metadata I/O should be done synchronously, while data I/O should be done
147
Metadata I/O should be done synchronously, while data I/O should be done
140
asynchronously.
148
asynchronously.

Return to bug 31588