kernel - Add vsyncscan() infrastructure
[dragonfly.git] / sys / kern / vfs_sync.c
1 /*
2  * Copyright (c) 1989, 1993
3  *      The Regents of the University of California.  All rights reserved.
4  * (c) UNIX System Laboratories, Inc.
5  * All or some portions of this file are derived from material licensed
6  * to the University of California by American Telephone and Telegraph
7  * Co. or Unix System Laboratories, Inc. and are reproduced herein with
8  * the permission of UNIX System Laboratories, Inc.
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  * 3. Neither the name of the University nor the names of its contributors
19  *    may be used to endorse or promote products derived from this software
20  *    without specific prior written permission.
21  *
22  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
23  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
26  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32  * SUCH DAMAGE.
33  *
34  *      @(#)vfs_subr.c  8.31 (Berkeley) 5/26/95
35  * $FreeBSD: src/sys/kern/vfs_subr.c,v 1.249.2.30 2003/04/04 20:35:57 tegge Exp $
36  */
37
38 /*
39  * External virtual filesystem routines
40  */
41
42 #include <sys/param.h>
43 #include <sys/systm.h>
44 #include <sys/buf.h>
45 #include <sys/conf.h>
46 #include <sys/dirent.h>
47 #include <sys/domain.h>
48 #include <sys/eventhandler.h>
49 #include <sys/fcntl.h>
50 #include <sys/kernel.h>
51 #include <sys/kthread.h>
52 #include <sys/malloc.h>
53 #include <sys/mbuf.h>
54 #include <sys/mount.h>
55 #include <sys/proc.h>
56 #include <sys/namei.h>
57 #include <sys/reboot.h>
58 #include <sys/socket.h>
59 #include <sys/stat.h>
60 #include <sys/sysctl.h>
61 #include <sys/syslog.h>
62 #include <sys/vmmeter.h>
63 #include <sys/vnode.h>
64
65 #include <machine/limits.h>
66
67 #include <vm/vm.h>
68 #include <vm/vm_object.h>
69 #include <vm/vm_extern.h>
70 #include <vm/vm_kern.h>
71 #include <vm/pmap.h>
72 #include <vm/vm_map.h>
73 #include <vm/vm_page.h>
74 #include <vm/vm_pager.h>
75 #include <vm/vnode_pager.h>
76
77 #include <sys/buf2.h>
78 #include <sys/thread2.h>
79
80 /*
81  * The workitem queue.
82  */
83 #define SYNCER_MAXDELAY         32
84 static int sysctl_kern_syncdelay(SYSCTL_HANDLER_ARGS);
85 time_t syncdelay = 30;          /* max time to delay syncing data */
86 SYSCTL_PROC(_kern, OID_AUTO, syncdelay, CTLTYPE_INT | CTLFLAG_RW, 0, 0,
87                 sysctl_kern_syncdelay, "I", "VFS data synchronization delay");
88 time_t filedelay = 30;          /* time to delay syncing files */
89 SYSCTL_INT(_kern, OID_AUTO, filedelay, CTLFLAG_RW,
90                 &filedelay, 0, "File synchronization delay");
91 time_t dirdelay = 29;           /* time to delay syncing directories */
92 SYSCTL_INT(_kern, OID_AUTO, dirdelay, CTLFLAG_RW,
93                 &dirdelay, 0, "Directory synchronization delay");
94 time_t metadelay = 28;          /* time to delay syncing metadata */
95 SYSCTL_INT(_kern, OID_AUTO, metadelay, CTLFLAG_RW,
96                 &metadelay, 0, "VFS metadata synchronization delay");
97 static int rushjob;                     /* number of slots to run ASAP */
98 static int stat_rush_requests;  /* number of times I/O speeded up */
99 SYSCTL_INT(_debug, OID_AUTO, rush_requests, CTLFLAG_RW,
100                 &stat_rush_requests, 0, "");
101
102 LIST_HEAD(synclist, vnode);
103
104 #define SC_FLAG_EXIT            (0x1)           /* request syncer exit */
105 #define SC_FLAG_DONE            (0x2)           /* syncer confirm exit */
106 #define         SC_FLAG_BIOOPS_ALL      (0x4)           /* do bufops_sync(NULL) */
107
108 struct syncer_ctx {
109         struct mount            *sc_mp;
110         struct lwkt_token       sc_token;
111         struct thread           *sc_thread;
112         int                     sc_flags;
113
114         struct synclist         *syncer_workitem_pending;
115         long                    syncer_mask;
116         int                     syncer_delayno;
117         int                     syncer_forced;
118 };
119
120 static struct syncer_ctx syncer_ctx0;
121
122 static void syncer_thread(void *);
123
124 static void
125 syncer_ctx_init(struct syncer_ctx *ctx, struct mount *mp)
126 {
127         ctx->sc_mp = mp; 
128         ctx->sc_flags = 0;
129         ctx->syncer_workitem_pending = hashinit(SYNCER_MAXDELAY, M_DEVBUF,
130                                                 &ctx->syncer_mask);
131         ctx->syncer_delayno = 0;
132         lwkt_token_init(&ctx->sc_token, "syncer");
133 }
134
135 /*
136  * Called from vfsinit()
137  */
138 void
139 vfs_sync_init(void)
140 {
141         syncer_ctx_init(&syncer_ctx0, NULL);
142         syncer_ctx0.sc_flags |= SC_FLAG_BIOOPS_ALL;
143         
144         /* Support schedcpu wakeup of syncer0 */
145         lbolt_syncer = &syncer_ctx0;
146 }
147
148 static int
149 sysctl_kern_syncdelay(SYSCTL_HANDLER_ARGS)
150 {
151         int error;
152         int v = syncdelay;
153
154         error = sysctl_handle_int(oidp, &v, 0, req);
155         if (error || !req->newptr)
156                 return (error);
157         if (v < 1)
158                 v = 1;
159         if (v > SYNCER_MAXDELAY)
160                 v = SYNCER_MAXDELAY;
161         syncdelay = v;
162
163         return(0);
164 }
165
166 static struct syncer_ctx *
167 vn_get_syncer(struct vnode *vp)
168 {
169         struct mount *mp;
170         struct syncer_ctx *ctx;
171
172         if ((mp = vp->v_mount) != NULL)
173                 ctx = mp->mnt_syncer_ctx;
174         else
175                 ctx = &syncer_ctx0;
176         return (ctx);
177 }
178
179 /*
180  * The workitem queue.
181  * 
182  * It is useful to delay writes of file data and filesystem metadata
183  * for tens of seconds so that quickly created and deleted files need
184  * not waste disk bandwidth being created and removed. To realize this,
185  * we append vnodes to a "workitem" queue. When running with a soft
186  * updates implementation, most pending metadata dependencies should
187  * not wait for more than a few seconds. Thus, mounted on block devices
188  * are delayed only about a half the time that file data is delayed.
189  * Similarly, directory updates are more critical, so are only delayed
190  * about a third the time that file data is delayed. Thus, there are
191  * SYNCER_MAXDELAY queues that are processed round-robin at a rate of
192  * one each second (driven off the filesystem syncer process). The
193  * syncer_delayno variable indicates the next queue that is to be processed.
194  * Items that need to be processed soon are placed in this queue:
195  *
196  *      syncer_workitem_pending[syncer_delayno]
197  *
198  * A delay of fifteen seconds is done by placing the request fifteen
199  * entries later in the queue:
200  *
201  *      syncer_workitem_pending[(syncer_delayno + 15) & syncer_mask]
202  *
203  */
204
205 /*
206  * Add an item to the syncer work queue.
207  *
208  * WARNING: Cannot get vp->v_token here if not already held, we must
209  *          depend on the syncer_token (which might already be held by
210  *          the caller) to protect v_synclist and VONWORKLST.
211  *
212  * MPSAFE
213  */
214 void
215 vn_syncer_add(struct vnode *vp, int delay)
216 {
217         struct syncer_ctx *ctx;
218         int slot;
219
220         ctx = vn_get_syncer(vp);
221
222         lwkt_gettoken(&ctx->sc_token);
223
224         if (vp->v_flag & VONWORKLST)
225                 LIST_REMOVE(vp, v_synclist);
226         if (delay <= 0) {
227                 slot = -delay & ctx->syncer_mask;
228         } else {
229                 if (delay > SYNCER_MAXDELAY - 2)
230                         delay = SYNCER_MAXDELAY - 2;
231                 slot = (ctx->syncer_delayno + delay) & ctx->syncer_mask;
232         }
233
234         LIST_INSERT_HEAD(&ctx->syncer_workitem_pending[slot], vp, v_synclist);
235         vsetflags(vp, VONWORKLST);
236
237         lwkt_reltoken(&ctx->sc_token);
238 }
239
240 /*
241  * Removes the vnode from the syncer list.  Since we might block while
242  * acquiring the syncer_token we have to recheck conditions.
243  *
244  * vp->v_token held on call
245  */
246 void
247 vn_syncer_remove(struct vnode *vp)
248 {
249         struct syncer_ctx *ctx;
250
251         ctx = vn_get_syncer(vp);
252
253         lwkt_gettoken(&ctx->sc_token);
254
255         if ((vp->v_flag & VONWORKLST) && RB_EMPTY(&vp->v_rbdirty_tree)) {
256                 vclrflags(vp, VONWORKLST);
257                 LIST_REMOVE(vp, v_synclist);
258         }
259
260         lwkt_reltoken(&ctx->sc_token);
261 }
262
263 /*
264  * Create per-filesystem syncer process
265  */
266 void
267 vn_syncer_thr_create(struct mount *mp)
268 {
269         struct syncer_ctx *ctx;
270         static int syncalloc = 0;
271         int rc;
272
273         if (mp->mnt_kern_flag & MNTK_THR_SYNC) {
274                 ctx = kmalloc(sizeof(struct syncer_ctx), M_TEMP,
275                               M_WAITOK | M_ZERO);
276                 syncer_ctx_init(ctx, mp);
277                 mp->mnt_syncer_ctx = ctx;
278                 rc = kthread_create(syncer_thread, ctx, &ctx->sc_thread, 
279                                     "syncer%d", ++syncalloc);
280         } else {
281                 mp->mnt_syncer_ctx = &syncer_ctx0;
282         }
283 }
284
285 /*
286  * Stop per-filesystem syncer process
287  */
288 void
289 vn_syncer_thr_stop(struct mount *mp)
290 {
291         struct syncer_ctx *ctx;
292
293         ctx = mp->mnt_syncer_ctx;
294         if (ctx == NULL || ctx == &syncer_ctx0)
295                 return;
296         KKASSERT(mp->mnt_kern_flag & MNTK_THR_SYNC);
297
298         lwkt_gettoken(&ctx->sc_token);
299
300         /* Signal the syncer process to exit */
301         ctx->sc_flags |= SC_FLAG_EXIT;
302         wakeup(ctx);
303         
304         /* Wait till syncer process exits */
305         while ((ctx->sc_flags & SC_FLAG_DONE) == 0) 
306                 tsleep(&ctx->sc_flags, 0, "syncexit", hz);
307
308         mp->mnt_syncer_ctx = NULL;
309         lwkt_reltoken(&ctx->sc_token);
310
311         hashdestroy(ctx->syncer_workitem_pending, M_DEVBUF, ctx->syncer_mask);
312         kfree(ctx, M_TEMP);
313 }
314
315 struct  thread *updatethread;
316
317 /*
318  * System filesystem synchronizer daemon.
319  */
320 static void
321 syncer_thread(void *_ctx)
322 {
323         struct thread *td = curthread;
324         struct syncer_ctx *ctx = _ctx;
325         struct synclist *slp;
326         struct vnode *vp;
327         long starttime;
328         int *sc_flagsp;
329         int sc_flags;
330         int vnodes_synced = 0;
331
332         /*
333          * syncer0 runs till system shutdown; per-filesystem syncers are
334          * terminated on filesystem unmount
335          */
336         if (ctx == &syncer_ctx0) 
337                 EVENTHANDLER_REGISTER(shutdown_pre_sync, shutdown_kproc, td,
338                                       SHUTDOWN_PRI_LAST);
339         for (;;) {
340                 kproc_suspend_loop();
341
342                 starttime = time_uptime;
343                 lwkt_gettoken(&ctx->sc_token);
344
345                 /*
346                  * Push files whose dirty time has expired.  Be careful
347                  * of interrupt race on slp queue.
348                  */
349                 slp = &ctx->syncer_workitem_pending[ctx->syncer_delayno];
350                 ctx->syncer_delayno = (ctx->syncer_delayno + 1) &
351                                       ctx->syncer_mask;
352
353                 while ((vp = LIST_FIRST(slp)) != NULL) {
354                         if (ctx->syncer_forced) {
355                                 if (vget(vp, LK_EXCLUSIVE) == 0) {
356                                         VOP_FSYNC(vp, MNT_NOWAIT, 0);
357                                         vput(vp);
358                                         vnodes_synced++;
359                                 }
360                         } else {
361                                 if (vget(vp, LK_EXCLUSIVE | LK_NOWAIT) == 0) {
362                                         VOP_FSYNC(vp, MNT_LAZY, 0);
363                                         vput(vp);
364                                         vnodes_synced++;
365                                 }
366                         }
367
368                         /*
369                          * vp is stale but can still be used if we can
370                          * verify that it remains at the head of the list.
371                          * Be careful not to try to get vp->v_token as
372                          * vp can become stale if this blocks.
373                          *
374                          * If the vp is still at the head of the list were
375                          * unable to completely flush it and move it to
376                          * a later slot to give other vnodes a fair shot.
377                          *
378                          * Note that v_tag VT_VFS vnodes can remain on the
379                          * worklist with no dirty blocks, but sync_fsync()
380                          * moves it to a later slot so we will never see it
381                          * here.
382                          *
383                          * It is possible to race a vnode with no dirty
384                          * buffers being removed from the list.  If this
385                          * occurs we will move the vnode in the synclist
386                          * and then the other thread will remove it.  Do
387                          * not try to remove it here.
388                          */
389                         if (LIST_FIRST(slp) == vp)
390                                 vn_syncer_add(vp, syncdelay);
391                 }
392
393                 sc_flags = ctx->sc_flags;
394
395                 /* Exit on unmount */
396                 if (sc_flags & SC_FLAG_EXIT)
397                         break;
398
399                 lwkt_reltoken(&ctx->sc_token);
400
401                 /*
402                  * Do sync processing for each mount.
403                  */
404                 if (ctx->sc_mp || sc_flags & SC_FLAG_BIOOPS_ALL)
405                         bio_ops_sync(ctx->sc_mp);
406
407                 /*
408                  * The variable rushjob allows the kernel to speed up the
409                  * processing of the filesystem syncer process. A rushjob
410                  * value of N tells the filesystem syncer to process the next
411                  * N seconds worth of work on its queue ASAP. Currently rushjob
412                  * is used by the soft update code to speed up the filesystem
413                  * syncer process when the incore state is getting so far
414                  * ahead of the disk that the kernel memory pool is being
415                  * threatened with exhaustion.
416                  */
417                 if (ctx == &syncer_ctx0 && rushjob > 0) {
418                         atomic_subtract_int(&rushjob, 1);
419                         continue;
420                 }
421                 /*
422                  * If it has taken us less than a second to process the
423                  * current work, then wait. Otherwise start right over
424                  * again. We can still lose time if any single round
425                  * takes more than two seconds, but it does not really
426                  * matter as we are just trying to generally pace the
427                  * filesystem activity.
428                  */
429                 if (time_uptime == starttime)
430                         tsleep(ctx, 0, "syncer", hz);
431         }
432
433         /*
434          * Unmount/exit path for per-filesystem syncers; sc_token held
435          */
436         ctx->sc_flags |= SC_FLAG_DONE;
437         sc_flagsp = &ctx->sc_flags;
438         lwkt_reltoken(&ctx->sc_token);
439         wakeup(sc_flagsp);
440
441         kthread_exit();
442 }
443
444 static void
445 syncer_thread_start(void)
446 {
447         syncer_thread(&syncer_ctx0);
448 }
449
450 static struct kproc_desc up_kp = {
451         "syncer0",
452         syncer_thread_start,
453         &updatethread
454 };
455 SYSINIT(syncer, SI_SUB_KTHREAD_UPDATE, SI_ORDER_FIRST, kproc_start, &up_kp)
456
457 /*
458  * Request the syncer daemon to speed up its work.
459  * We never push it to speed up more than half of its
460  * normal turn time, otherwise it could take over the cpu.
461  */
462 int
463 speedup_syncer(void)
464 {
465         /*
466          * Don't bother protecting the test.  unsleep_and_wakeup_thread()
467          * will only do something real if the thread is in the right state.
468          */
469         wakeup(lbolt_syncer);
470         if (rushjob < syncdelay / 2) {
471                 atomic_add_int(&rushjob, 1);
472                 stat_rush_requests += 1;
473                 return (1);
474         }
475         return(0);
476 }
477
478 /*
479  * Routine to create and manage a filesystem syncer vnode.
480  */
481 static int sync_close(struct vop_close_args *);
482 static int sync_fsync(struct vop_fsync_args *);
483 static int sync_inactive(struct vop_inactive_args *);
484 static int sync_reclaim (struct vop_reclaim_args *);
485 static int sync_print(struct vop_print_args *);
486
487 static struct vop_ops sync_vnode_vops = {
488         .vop_default =  vop_eopnotsupp,
489         .vop_close =    sync_close,
490         .vop_fsync =    sync_fsync,
491         .vop_inactive = sync_inactive,
492         .vop_reclaim =  sync_reclaim,
493         .vop_print =    sync_print,
494 };
495
496 static struct vop_ops *sync_vnode_vops_p = &sync_vnode_vops;
497
498 VNODEOP_SET(sync_vnode_vops);
499
500 /*
501  * Create a new filesystem syncer vnode for the specified mount point.
502  * This vnode is placed on the worklist and is responsible for sync'ing
503  * the filesystem.
504  *
505  * NOTE: read-only mounts are also placed on the worklist.  The filesystem
506  * sync code is also responsible for cleaning up vnodes.
507  */
508 int
509 vfs_allocate_syncvnode(struct mount *mp)
510 {
511         struct vnode *vp;
512         static long start, incr, next;
513         int error;
514
515         /* Allocate a new vnode */
516         error = getspecialvnode(VT_VFS, mp, &sync_vnode_vops_p, &vp, 0, 0);
517         if (error) {
518                 mp->mnt_syncer = NULL;
519                 return (error);
520         }
521         vp->v_type = VNON;
522         /*
523          * Place the vnode onto the syncer worklist. We attempt to
524          * scatter them about on the list so that they will go off
525          * at evenly distributed times even if all the filesystems
526          * are mounted at once.
527          */
528         next += incr;
529         if (next == 0 || next > SYNCER_MAXDELAY) {
530                 start /= 2;
531                 incr /= 2;
532                 if (start == 0) {
533                         start = SYNCER_MAXDELAY / 2;
534                         incr = SYNCER_MAXDELAY;
535                 }
536                 next = start;
537         }
538         vn_syncer_add(vp, syncdelay > 0 ? next % syncdelay : 0);
539
540         /*
541          * The mnt_syncer field inherits the vnode reference, which is
542          * held until later decomissioning.
543          */
544         mp->mnt_syncer = vp;
545         vx_unlock(vp);
546         return (0);
547 }
548
549 static int
550 sync_close(struct vop_close_args *ap)
551 {
552         return (0);
553 }
554
555 /*
556  * Do a lazy sync of the filesystem.
557  *
558  * sync_fsync { struct vnode *a_vp, int a_waitfor }
559  */
560 static int
561 sync_fsync(struct vop_fsync_args *ap)
562 {
563         struct vnode *syncvp = ap->a_vp;
564         struct mount *mp = syncvp->v_mount;
565         int asyncflag;
566
567         /*
568          * We only need to do something if this is a lazy evaluation.
569          */
570         if ((ap->a_waitfor & MNT_LAZY) == 0)
571                 return (0);
572
573         /*
574          * Move ourselves to the back of the sync list.
575          */
576         vn_syncer_add(syncvp, syncdelay);
577
578         /*
579          * Walk the list of vnodes pushing all that are dirty and
580          * not already on the sync list, and freeing vnodes which have
581          * no refs and whos VM objects are empty.  vfs_msync() handles
582          * the VM issues and must be called whether the mount is readonly
583          * or not.
584          */
585         if (vfs_busy(mp, LK_NOWAIT) != 0)
586                 return (0);
587         if (mp->mnt_flag & MNT_RDONLY) {
588                 vfs_msync(mp, MNT_NOWAIT);
589         } else {
590                 asyncflag = mp->mnt_flag & MNT_ASYNC;
591                 mp->mnt_flag &= ~MNT_ASYNC;     /* ZZZ hack */
592                 vfs_msync(mp, MNT_NOWAIT);
593                 VFS_SYNC(mp, MNT_NOWAIT | MNT_LAZY);
594                 if (asyncflag)
595                         mp->mnt_flag |= MNT_ASYNC;
596         }
597         vfs_unbusy(mp);
598         return (0);
599 }
600
601 /*
602  * The syncer vnode is no longer referenced.
603  *
604  * sync_inactive { struct vnode *a_vp, struct proc *a_p }
605  */
606 static int
607 sync_inactive(struct vop_inactive_args *ap)
608 {
609         vgone_vxlocked(ap->a_vp);
610         return (0);
611 }
612
613 /*
614  * The syncer vnode is no longer needed and is being decommissioned.
615  * This can only occur when the last reference has been released on
616  * mp->mnt_syncer, so mp->mnt_syncer had better be NULL.
617  *
618  * Modifications to the worklist must be protected with a critical
619  * section.
620  *
621  *      sync_reclaim { struct vnode *a_vp }
622  */
623 static int
624 sync_reclaim(struct vop_reclaim_args *ap)
625 {
626         struct vnode *vp = ap->a_vp;
627         struct syncer_ctx *ctx;
628
629         ctx = vn_get_syncer(vp);
630
631         lwkt_gettoken(&ctx->sc_token);
632         KKASSERT(vp->v_mount->mnt_syncer != vp);
633         if (vp->v_flag & VONWORKLST) {
634                 LIST_REMOVE(vp, v_synclist);
635                 vclrflags(vp, VONWORKLST);
636         }
637         lwkt_reltoken(&ctx->sc_token);
638
639         return (0);
640 }
641
642 /*
643  * This is very similar to vmntvnodescan() but it only scans the
644  * vnodes on the syncer list.  VFS's which support faster VFS_SYNC
645  * operations use the VISDIRTY flag on the vnode to ensure that vnodes
646  * with dirty inodes are added to the syncer in addition to vnodes
647  * with dirty buffers, and can use this function instead of nmntvnodescan().
648  * 
649  * This is important when a system has millions of vnodes.
650  */
651 int
652 vsyncscan(
653     struct mount *mp,
654     int vmsc_flags,
655     int (*slowfunc)(struct mount *mp, struct vnode *vp, void *data),
656     void *data
657 ) {
658         struct syncer_ctx *ctx;
659         struct synclist *slp;
660         struct vnode *vp;
661         int b;
662         int i;
663         int lkflags;
664
665         if (vmsc_flags & VMSC_NOWAIT)
666                 lkflags = LK_NOWAIT;
667         else
668                 lkflags = 0;
669
670         /*
671          * Syncer list context
672          */
673         if (mp)
674                 ctx = mp->mnt_syncer_ctx;
675         else
676                 ctx = &syncer_ctx0;
677         lwkt_gettoken(&ctx->sc_token);
678
679         /*
680          * Setup for loop.  Allow races against the syncer thread but
681          * require that the syncer thread no be lazy if we were told
682          * not to be lazy.
683          */
684         b = ctx->syncer_delayno & ctx->syncer_mask;
685         i = b;
686         if ((vmsc_flags & VMSC_NOWAIT) == 0)
687                 ++ctx->syncer_forced;
688
689         do {
690                 slp = &ctx->syncer_workitem_pending[i];
691
692                 while ((vp = LIST_FIRST(slp)) != NULL) {
693                         if (vget(vp, LK_EXCLUSIVE | lkflags) == 0) {
694                                 slowfunc(mp, vp, data);
695                                 vput(vp);
696                         }
697                         if (LIST_FIRST(slp) == vp)
698                                 vn_syncer_add(vp, -(i + syncdelay));
699                 }
700                 i = (i + 1) & ctx->syncer_mask;
701         } while (i != b);
702
703         if ((vmsc_flags & VMSC_NOWAIT) == 0)
704                 --ctx->syncer_forced;
705         lwkt_reltoken(&ctx->sc_token);
706         return(0);
707 }
708
709 /*
710  * Print out a syncer vnode.
711  *
712  *      sync_print { struct vnode *a_vp }
713  */
714 static int
715 sync_print(struct vop_print_args *ap)
716 {
717         struct vnode *vp = ap->a_vp;
718
719         kprintf("syncer vnode");
720         lockmgr_printinfo(&vp->v_lock);
721         kprintf("\n");
722         return (0);
723 }
724