2000-07-19 07:15:32 +00:00
|
|
|
.\" Copyright (c) 2000 Sheldon Hearn <sheldonh@FreeBSD.org>
|
|
|
|
.\" All rights reserved.
|
1996-02-12 00:45:47 +00:00
|
|
|
.\"
|
|
|
|
.\" Redistribution and use in source and binary forms, with or without
|
|
|
|
.\" modification, are permitted provided that the following conditions
|
|
|
|
.\" are met:
|
|
|
|
.\" 1. Redistributions of source code must retain the above copyright
|
|
|
|
.\" notice, this list of conditions and the following disclaimer.
|
|
|
|
.\" 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
.\" notice, this list of conditions and the following disclaimer in the
|
|
|
|
.\" documentation and/or other materials provided with the distribution.
|
|
|
|
.\"
|
|
|
|
.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
.\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
|
|
|
.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
.\" SUCH DAMAGE.
|
|
|
|
.\"
|
1999-08-28 00:22:10 +00:00
|
|
|
.\" $FreeBSD$
|
1997-03-07 02:50:01 +00:00
|
|
|
.\"
|
2000-07-19 07:15:32 +00:00
|
|
|
.Dd July 14, 2000
|
|
|
|
.Dt SYNCER 4
|
|
|
|
.Os
|
1996-02-12 00:45:47 +00:00
|
|
|
.Sh NAME
|
2000-07-19 07:15:32 +00:00
|
|
|
.Nm syncer
|
|
|
|
.Nd filesystem synchronizer kernel process
|
1996-02-12 00:45:47 +00:00
|
|
|
.Sh SYNOPSIS
|
2000-07-19 07:15:32 +00:00
|
|
|
.Nm syncer
|
1996-02-12 00:45:47 +00:00
|
|
|
.Sh DESCRIPTION
|
|
|
|
The
|
2000-07-19 07:15:32 +00:00
|
|
|
.Nm
|
1996-02-12 00:45:47 +00:00
|
|
|
kernel process helps protect the integrity of disk volumes
|
2000-07-19 07:15:32 +00:00
|
|
|
by flushing volatile cached filesystem data to disk.
|
|
|
|
This is done at thirty second
|
|
|
|
.Pq actually Dv SYNCER_MAXDELAY - 2
|
|
|
|
intervals by default.
|
|
|
|
.Pp
|
|
|
|
The kernel places all
|
|
|
|
.Xr vnode 9 Ns 's
|
|
|
|
in a number of queues equal to
|
|
|
|
.Dv SYNCER_MAXDELAY .
|
|
|
|
The
|
|
|
|
.Nm
|
|
|
|
process works through the queues
|
|
|
|
in a round-robin fashion,
|
|
|
|
usually processing one queue per second.
|
|
|
|
For each
|
|
|
|
.Xr vnode 9
|
|
|
|
on the queue,
|
|
|
|
the
|
|
|
|
.Nm
|
|
|
|
process forces a write out to disk of its dirty buffers.
|
1996-02-12 00:45:47 +00:00
|
|
|
.Sh SEE ALSO
|
|
|
|
.Xr sync 2 ,
|
|
|
|
.Xr fsck 8 ,
|
2000-07-19 07:15:32 +00:00
|
|
|
.Xr sync 8
|
1996-02-12 00:45:47 +00:00
|
|
|
.Sh BUGS
|
|
|
|
It is possible on some systems that a
|
1999-10-30 15:12:25 +00:00
|
|
|
.Xr sync 2
|
1996-02-12 00:45:47 +00:00
|
|
|
occurring simultaneously with a crash may cause
|
1996-05-31 21:02:16 +00:00
|
|
|
file system damage. See
|
1996-02-12 00:45:47 +00:00
|
|
|
.Xr fsck 8 .
|
|
|
|
.Sh HISTORY
|
2000-07-19 07:15:32 +00:00
|
|
|
The
|
|
|
|
.Nm
|
|
|
|
process is a descendant of the
|
|
|
|
.Sq update
|
|
|
|
command, which apeared in
|
1996-02-12 00:45:47 +00:00
|
|
|
.At v6 ,
|
1999-10-30 15:12:25 +00:00
|
|
|
and was usually started by
|
|
|
|
.Pa /etc/rc
|
|
|
|
when the system went multi-user.
|
1996-02-12 19:27:32 +00:00
|
|
|
A kernel initiated
|
2000-07-19 07:15:32 +00:00
|
|
|
update
|
1996-02-12 19:27:32 +00:00
|
|
|
process first appeared in
|
|
|
|
.Fx 2.0 .
|