lfs_bio.c revision 1.86 1 1.86 christos /* $NetBSD: lfs_bio.c,v 1.86 2005/05/29 21:25:24 christos Exp $ */
2 1.2 cgd
3 1.7 perseant /*-
4 1.58 perseant * Copyright (c) 1999, 2000, 2001, 2002, 2003 The NetBSD Foundation, Inc.
5 1.7 perseant * All rights reserved.
6 1.7 perseant *
7 1.7 perseant * This code is derived from software contributed to The NetBSD Foundation
8 1.7 perseant * by Konrad E. Schroder <perseant (at) hhhh.org>.
9 1.7 perseant *
10 1.7 perseant * Redistribution and use in source and binary forms, with or without
11 1.7 perseant * modification, are permitted provided that the following conditions
12 1.7 perseant * are met:
13 1.7 perseant * 1. Redistributions of source code must retain the above copyright
14 1.7 perseant * notice, this list of conditions and the following disclaimer.
15 1.7 perseant * 2. Redistributions in binary form must reproduce the above copyright
16 1.7 perseant * notice, this list of conditions and the following disclaimer in the
17 1.7 perseant * documentation and/or other materials provided with the distribution.
18 1.7 perseant * 3. All advertising materials mentioning features or use of this software
19 1.7 perseant * must display the following acknowledgement:
20 1.61 perseant * This product includes software developed by the NetBSD
21 1.61 perseant * Foundation, Inc. and its contributors.
22 1.7 perseant * 4. Neither the name of The NetBSD Foundation nor the names of its
23 1.7 perseant * contributors may be used to endorse or promote products derived
24 1.7 perseant * from this software without specific prior written permission.
25 1.7 perseant *
26 1.7 perseant * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
27 1.7 perseant * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
28 1.7 perseant * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
29 1.7 perseant * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
30 1.7 perseant * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
31 1.7 perseant * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
32 1.7 perseant * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
33 1.7 perseant * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
34 1.7 perseant * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
35 1.7 perseant * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
36 1.7 perseant * POSSIBILITY OF SUCH DAMAGE.
37 1.7 perseant */
38 1.1 mycroft /*
39 1.1 mycroft * Copyright (c) 1991, 1993
40 1.1 mycroft * The Regents of the University of California. All rights reserved.
41 1.1 mycroft *
42 1.1 mycroft * Redistribution and use in source and binary forms, with or without
43 1.1 mycroft * modification, are permitted provided that the following conditions
44 1.1 mycroft * are met:
45 1.1 mycroft * 1. Redistributions of source code must retain the above copyright
46 1.1 mycroft * notice, this list of conditions and the following disclaimer.
47 1.1 mycroft * 2. Redistributions in binary form must reproduce the above copyright
48 1.1 mycroft * notice, this list of conditions and the following disclaimer in the
49 1.1 mycroft * documentation and/or other materials provided with the distribution.
50 1.72 agc * 3. Neither the name of the University nor the names of its contributors
51 1.1 mycroft * may be used to endorse or promote products derived from this software
52 1.1 mycroft * without specific prior written permission.
53 1.1 mycroft *
54 1.1 mycroft * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
55 1.1 mycroft * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
56 1.1 mycroft * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
57 1.1 mycroft * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
58 1.1 mycroft * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
59 1.1 mycroft * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
60 1.1 mycroft * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
61 1.1 mycroft * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
62 1.1 mycroft * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
63 1.1 mycroft * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
64 1.1 mycroft * SUCH DAMAGE.
65 1.1 mycroft *
66 1.6 fvdl * @(#)lfs_bio.c 8.10 (Berkeley) 6/10/95
67 1.1 mycroft */
68 1.39 lukem
69 1.39 lukem #include <sys/cdefs.h>
70 1.86 christos __KERNEL_RCSID(0, "$NetBSD: lfs_bio.c,v 1.86 2005/05/29 21:25:24 christos Exp $");
71 1.1 mycroft
72 1.1 mycroft #include <sys/param.h>
73 1.5 christos #include <sys/systm.h>
74 1.1 mycroft #include <sys/proc.h>
75 1.1 mycroft #include <sys/buf.h>
76 1.1 mycroft #include <sys/vnode.h>
77 1.1 mycroft #include <sys/resourcevar.h>
78 1.1 mycroft #include <sys/mount.h>
79 1.1 mycroft #include <sys/kernel.h>
80 1.1 mycroft
81 1.1 mycroft #include <ufs/ufs/inode.h>
82 1.1 mycroft #include <ufs/ufs/ufsmount.h>
83 1.5 christos #include <ufs/ufs/ufs_extern.h>
84 1.1 mycroft
85 1.1 mycroft #include <ufs/lfs/lfs.h>
86 1.1 mycroft #include <ufs/lfs/lfs_extern.h>
87 1.1 mycroft
88 1.58 perseant #include <uvm/uvm.h>
89 1.58 perseant
90 1.7 perseant /* Macros to clear/set/test flags. */
91 1.7 perseant # define SET(t, f) (t) |= (f)
92 1.7 perseant # define CLR(t, f) (t) &= ~(f)
93 1.7 perseant # define ISSET(t, f) ((t) & (f))
94 1.7 perseant
95 1.1 mycroft /*
96 1.1 mycroft * LFS block write function.
97 1.1 mycroft *
98 1.1 mycroft * XXX
99 1.1 mycroft * No write cost accounting is done.
100 1.1 mycroft * This is almost certainly wrong for synchronous operations and NFS.
101 1.71 yamt *
102 1.71 yamt * protected by lfs_subsys_lock.
103 1.1 mycroft */
104 1.58 perseant int locked_queue_count = 0; /* Count of locked-down buffers. */
105 1.58 perseant long locked_queue_bytes = 0L; /* Total size of locked buffers. */
106 1.61 perseant int lfs_subsys_pages = 0L; /* Total number LFS-written pages */
107 1.78 perseant int lfs_fs_pagetrip = 0; /* # of pages to trip per-fs write */
108 1.61 perseant int lfs_writing = 0; /* Set if already kicked off a writer
109 1.1 mycroft because of buffer space */
110 1.71 yamt /* Lock for aboves */
111 1.64 perseant struct simplelock lfs_subsys_lock = SIMPLELOCK_INITIALIZER;
112 1.64 perseant
113 1.7 perseant extern int lfs_dostats;
114 1.7 perseant
115 1.27 perseant /*
116 1.51 yamt * reserved number/bytes of locked buffers
117 1.51 yamt */
118 1.51 yamt int locked_queue_rcount = 0;
119 1.51 yamt long locked_queue_rbytes = 0L;
120 1.51 yamt
121 1.51 yamt int lfs_fits_buf(struct lfs *, int, int);
122 1.52 yamt int lfs_reservebuf(struct lfs *, struct vnode *vp, struct vnode *vp2,
123 1.52 yamt int, int);
124 1.52 yamt int lfs_reserveavail(struct lfs *, struct vnode *vp, struct vnode *vp2, int);
125 1.51 yamt
126 1.51 yamt int
127 1.51 yamt lfs_fits_buf(struct lfs *fs, int n, int bytes)
128 1.51 yamt {
129 1.71 yamt int count_fit, bytes_fit;
130 1.71 yamt
131 1.82 perseant ASSERT_NO_SEGLOCK(fs);
132 1.71 yamt LOCK_ASSERT(simple_lock_held(&lfs_subsys_lock));
133 1.71 yamt
134 1.71 yamt count_fit =
135 1.51 yamt (locked_queue_count + locked_queue_rcount + n < LFS_WAIT_BUFS);
136 1.71 yamt bytes_fit =
137 1.51 yamt (locked_queue_bytes + locked_queue_rbytes + bytes < LFS_WAIT_BYTES);
138 1.51 yamt
139 1.80 perseant #ifdef DEBUG
140 1.51 yamt if (!count_fit) {
141 1.80 perseant DLOG((DLOG_AVAIL, "lfs_fits_buf: no fit count: %d + %d + %d >= %d\n",
142 1.80 perseant locked_queue_count, locked_queue_rcount,
143 1.80 perseant n, LFS_WAIT_BUFS));
144 1.51 yamt }
145 1.51 yamt if (!bytes_fit) {
146 1.80 perseant DLOG((DLOG_AVAIL, "lfs_fits_buf: no fit bytes: %ld + %ld + %d >= %ld\n",
147 1.80 perseant locked_queue_bytes, locked_queue_rbytes,
148 1.80 perseant bytes, LFS_WAIT_BYTES));
149 1.51 yamt }
150 1.80 perseant #endif /* DEBUG */
151 1.51 yamt
152 1.51 yamt return (count_fit && bytes_fit);
153 1.51 yamt }
154 1.51 yamt
155 1.52 yamt /* ARGSUSED */
156 1.51 yamt int
157 1.52 yamt lfs_reservebuf(struct lfs *fs, struct vnode *vp, struct vnode *vp2,
158 1.52 yamt int n, int bytes)
159 1.51 yamt {
160 1.82 perseant ASSERT_MAYBE_SEGLOCK(fs);
161 1.51 yamt KASSERT(locked_queue_rcount >= 0);
162 1.51 yamt KASSERT(locked_queue_rbytes >= 0);
163 1.51 yamt
164 1.71 yamt simple_lock(&lfs_subsys_lock);
165 1.51 yamt while (n > 0 && !lfs_fits_buf(fs, n, bytes)) {
166 1.51 yamt int error;
167 1.51 yamt
168 1.78 perseant lfs_flush(fs, 0, 0);
169 1.51 yamt
170 1.71 yamt error = ltsleep(&locked_queue_count, PCATCH | PUSER,
171 1.71 yamt "lfsresbuf", hz * LFS_BUFWAIT, &lfs_subsys_lock);
172 1.71 yamt if (error && error != EWOULDBLOCK) {
173 1.71 yamt simple_unlock(&lfs_subsys_lock);
174 1.51 yamt return error;
175 1.71 yamt }
176 1.51 yamt }
177 1.51 yamt
178 1.51 yamt locked_queue_rcount += n;
179 1.51 yamt locked_queue_rbytes += bytes;
180 1.51 yamt
181 1.71 yamt simple_unlock(&lfs_subsys_lock);
182 1.71 yamt
183 1.51 yamt KASSERT(locked_queue_rcount >= 0);
184 1.51 yamt KASSERT(locked_queue_rbytes >= 0);
185 1.51 yamt
186 1.51 yamt return 0;
187 1.51 yamt }
188 1.51 yamt
189 1.51 yamt /*
190 1.27 perseant * Try to reserve some blocks, prior to performing a sensitive operation that
191 1.27 perseant * requires the vnode lock to be honored. If there is not enough space, give
192 1.27 perseant * up the vnode lock temporarily and wait for the space to become available.
193 1.27 perseant *
194 1.44 perseant * Called with vp locked. (Note nowever that if fsb < 0, vp is ignored.)
195 1.46 yamt *
196 1.47 yamt * XXX YAMT - it isn't safe to unlock vp here
197 1.47 yamt * because the node might be modified while we sleep.
198 1.47 yamt * (eg. cached states like i_offset might be stale,
199 1.47 yamt * the vnode might be truncated, etc..)
200 1.55 yamt * maybe we should have a way to restart the vnodeop (EVOPRESTART?)
201 1.55 yamt * or rearrange vnodeop interface to leave vnode locking to file system
202 1.55 yamt * specific code so that each file systems can have their own vnode locking and
203 1.55 yamt * vnode re-using strategies.
204 1.27 perseant */
205 1.27 perseant int
206 1.52 yamt lfs_reserveavail(struct lfs *fs, struct vnode *vp, struct vnode *vp2, int fsb)
207 1.27 perseant {
208 1.27 perseant CLEANERINFO *cip;
209 1.27 perseant struct buf *bp;
210 1.27 perseant int error, slept;
211 1.27 perseant
212 1.82 perseant ASSERT_MAYBE_SEGLOCK(fs);
213 1.27 perseant slept = 0;
214 1.82 perseant simple_lock(&fs->lfs_interlock);
215 1.78 perseant while (fsb > 0 && !lfs_fits(fs, fsb + fs->lfs_ravail + fs->lfs_favail)) {
216 1.82 perseant simple_unlock(&fs->lfs_interlock);
217 1.49 yamt #if 0
218 1.49 yamt /*
219 1.49 yamt * XXX ideally, we should unlock vnodes here
220 1.49 yamt * because we might sleep very long time.
221 1.49 yamt */
222 1.27 perseant VOP_UNLOCK(vp, 0);
223 1.52 yamt if (vp2 != NULL) {
224 1.52 yamt VOP_UNLOCK(vp2, 0);
225 1.52 yamt }
226 1.50 yamt #else
227 1.50 yamt /*
228 1.50 yamt * XXX since we'll sleep for cleaner with vnode lock holding,
229 1.55 yamt * deadlock will occur if cleaner tries to lock the vnode.
230 1.50 yamt * (eg. lfs_markv -> lfs_fastvget -> getnewvnode -> vclean)
231 1.50 yamt */
232 1.49 yamt #endif
233 1.27 perseant
234 1.30 perseant if (!slept) {
235 1.80 perseant DLOG((DLOG_AVAIL, "lfs_reserve: waiting for %ld (bfree = %d,"
236 1.80 perseant " est_bfree = %d)\n",
237 1.80 perseant fsb + fs->lfs_ravail + fs->lfs_favail,
238 1.80 perseant fs->lfs_bfree, LFS_EST_BFREE(fs)));
239 1.80 perseant }
240 1.27 perseant ++slept;
241 1.27 perseant
242 1.27 perseant /* Wake up the cleaner */
243 1.27 perseant LFS_CLEANERINFO(cip, fs, bp);
244 1.31 perseant LFS_SYNC_CLEANERINFO(cip, fs, bp, 0);
245 1.27 perseant wakeup(&lfs_allclean_wakeup);
246 1.27 perseant wakeup(&fs->lfs_nextseg);
247 1.79 perry
248 1.82 perseant simple_lock(&fs->lfs_interlock);
249 1.82 perseant /* Cleaner might have run while we were reading, check again */
250 1.82 perseant if (lfs_fits(fs, fsb + fs->lfs_ravail + fs->lfs_favail))
251 1.82 perseant break;
252 1.82 perseant
253 1.82 perseant error = ltsleep(&fs->lfs_avail, PCATCH | PUSER, "lfs_reserve",
254 1.82 perseant 0, &fs->lfs_interlock);
255 1.49 yamt #if 0
256 1.27 perseant vn_lock(vp, LK_EXCLUSIVE | LK_RETRY); /* XXX use lockstatus */
257 1.52 yamt vn_lock(vp2, LK_EXCLUSIVE | LK_RETRY); /* XXX use lockstatus */
258 1.49 yamt #endif
259 1.27 perseant if (error)
260 1.27 perseant return error;
261 1.27 perseant }
262 1.80 perseant #ifdef DEBUG
263 1.80 perseant if (slept) {
264 1.80 perseant DLOG((DLOG_AVAIL, "lfs_reserve: woke up\n"));
265 1.80 perseant }
266 1.44 perseant #endif
267 1.44 perseant fs->lfs_ravail += fsb;
268 1.82 perseant simple_unlock(&fs->lfs_interlock);
269 1.51 yamt
270 1.27 perseant return 0;
271 1.27 perseant }
272 1.27 perseant
273 1.51 yamt #ifdef DIAGNOSTIC
274 1.51 yamt int lfs_rescount;
275 1.51 yamt int lfs_rescountdirop;
276 1.51 yamt #endif
277 1.51 yamt
278 1.51 yamt int
279 1.52 yamt lfs_reserve(struct lfs *fs, struct vnode *vp, struct vnode *vp2, int fsb)
280 1.51 yamt {
281 1.51 yamt int error;
282 1.51 yamt int cantwait;
283 1.51 yamt
284 1.82 perseant ASSERT_MAYBE_SEGLOCK(fs);
285 1.82 perseant if (vp2) {
286 1.82 perseant /* Make sure we're not in the process of reclaiming vp2 */
287 1.82 perseant simple_lock(&fs->lfs_interlock);
288 1.82 perseant while(fs->lfs_flags & LFS_UNDIROP) {
289 1.82 perseant ltsleep(&fs->lfs_flags, PRIBIO + 1, "lfsrundirop", 0,
290 1.82 perseant &fs->lfs_interlock);
291 1.82 perseant }
292 1.82 perseant simple_unlock(&fs->lfs_interlock);
293 1.82 perseant }
294 1.82 perseant
295 1.52 yamt KASSERT(fsb < 0 || VOP_ISLOCKED(vp));
296 1.52 yamt KASSERT(vp2 == NULL || fsb < 0 || VOP_ISLOCKED(vp2));
297 1.55 yamt KASSERT(vp2 == NULL || !(VTOI(vp2)->i_flag & IN_ADIROP));
298 1.55 yamt KASSERT(vp2 == NULL || vp2 != fs->lfs_unlockvp);
299 1.52 yamt
300 1.54 yamt cantwait = (VTOI(vp)->i_flag & IN_ADIROP) || fs->lfs_unlockvp == vp;
301 1.51 yamt #ifdef DIAGNOSTIC
302 1.51 yamt if (cantwait) {
303 1.51 yamt if (fsb > 0)
304 1.51 yamt lfs_rescountdirop++;
305 1.51 yamt else if (fsb < 0)
306 1.51 yamt lfs_rescountdirop--;
307 1.51 yamt if (lfs_rescountdirop < 0)
308 1.51 yamt panic("lfs_rescountdirop");
309 1.51 yamt }
310 1.51 yamt else {
311 1.51 yamt if (fsb > 0)
312 1.51 yamt lfs_rescount++;
313 1.51 yamt else if (fsb < 0)
314 1.51 yamt lfs_rescount--;
315 1.51 yamt if (lfs_rescount < 0)
316 1.51 yamt panic("lfs_rescount");
317 1.51 yamt }
318 1.51 yamt #endif
319 1.51 yamt if (cantwait)
320 1.51 yamt return 0;
321 1.53 yamt
322 1.53 yamt /*
323 1.53 yamt * XXX
324 1.53 yamt * vref vnodes here so that cleaner doesn't try to reuse them.
325 1.55 yamt * (see XXX comment in lfs_reserveavail)
326 1.53 yamt */
327 1.53 yamt lfs_vref(vp);
328 1.53 yamt if (vp2 != NULL) {
329 1.53 yamt lfs_vref(vp2);
330 1.53 yamt }
331 1.51 yamt
332 1.52 yamt error = lfs_reserveavail(fs, vp, vp2, fsb);
333 1.51 yamt if (error)
334 1.52 yamt goto done;
335 1.51 yamt
336 1.51 yamt /*
337 1.51 yamt * XXX just a guess. should be more precise.
338 1.51 yamt */
339 1.52 yamt error = lfs_reservebuf(fs, vp, vp2,
340 1.52 yamt fragstoblks(fs, fsb), fsbtob(fs, fsb));
341 1.51 yamt if (error)
342 1.52 yamt lfs_reserveavail(fs, vp, vp2, -fsb);
343 1.52 yamt
344 1.52 yamt done:
345 1.52 yamt lfs_vunref(vp);
346 1.52 yamt if (vp2 != NULL) {
347 1.52 yamt lfs_vunref(vp2);
348 1.52 yamt }
349 1.51 yamt
350 1.51 yamt return error;
351 1.51 yamt }
352 1.1 mycroft
353 1.1 mycroft int
354 1.36 perseant lfs_bwrite(void *v)
355 1.5 christos {
356 1.1 mycroft struct vop_bwrite_args /* {
357 1.1 mycroft struct buf *a_bp;
358 1.5 christos } */ *ap = v;
359 1.17 augustss struct buf *bp = ap->a_bp;
360 1.7 perseant
361 1.7 perseant #ifdef DIAGNOSTIC
362 1.61 perseant if (VTOI(bp->b_vp)->i_lfs->lfs_ronly == 0 && (bp->b_flags & B_ASYNC)) {
363 1.7 perseant panic("bawrite LFS buffer");
364 1.16 perseant }
365 1.7 perseant #endif /* DIAGNOSTIC */
366 1.85 perseant return lfs_bwrite_ext(bp, 0);
367 1.7 perseant }
368 1.7 perseant
369 1.79 perry /*
370 1.44 perseant * Determine if there is enough room currently available to write fsb
371 1.44 perseant * blocks. We need enough blocks for the new blocks, the current
372 1.44 perseant * inode blocks (including potentially the ifile inode), a summary block,
373 1.44 perseant * and the segment usage table, plus an ifile block.
374 1.7 perseant */
375 1.32 perseant int
376 1.36 perseant lfs_fits(struct lfs *fs, int fsb)
377 1.7 perseant {
378 1.26 perseant int needed;
379 1.26 perseant
380 1.82 perseant ASSERT_NO_SEGLOCK(fs);
381 1.36 perseant needed = fsb + btofsb(fs, fs->lfs_sumsize) +
382 1.44 perseant ((howmany(fs->lfs_uinodes + 1, INOPB(fs)) + fs->lfs_segtabsz +
383 1.44 perseant 1) << (fs->lfs_blktodb - fs->lfs_fsbtodb));
384 1.27 perseant
385 1.26 perseant if (needed >= fs->lfs_avail) {
386 1.80 perseant #ifdef DEBUG
387 1.80 perseant DLOG((DLOG_AVAIL, "lfs_fits: no fit: fsb = %ld, uinodes = %ld, "
388 1.80 perseant "needed = %ld, avail = %ld\n",
389 1.80 perseant (long)fsb, (long)fs->lfs_uinodes, (long)needed,
390 1.80 perseant (long)fs->lfs_avail));
391 1.26 perseant #endif
392 1.7 perseant return 0;
393 1.7 perseant }
394 1.7 perseant return 1;
395 1.7 perseant }
396 1.7 perseant
397 1.7 perseant int
398 1.44 perseant lfs_availwait(struct lfs *fs, int fsb)
399 1.32 perseant {
400 1.32 perseant int error;
401 1.32 perseant CLEANERINFO *cip;
402 1.32 perseant struct buf *cbp;
403 1.63 perseant
404 1.82 perseant ASSERT_NO_SEGLOCK(fs);
405 1.63 perseant /* Push cleaner blocks through regardless */
406 1.64 perseant simple_lock(&fs->lfs_interlock);
407 1.82 perseant if (LFS_SEGLOCK_HELD(fs) &&
408 1.64 perseant fs->lfs_sp->seg_flags & (SEGM_CLEAN | SEGM_FORCE_CKP)) {
409 1.64 perseant simple_unlock(&fs->lfs_interlock);
410 1.63 perseant return 0;
411 1.64 perseant }
412 1.64 perseant simple_unlock(&fs->lfs_interlock);
413 1.32 perseant
414 1.44 perseant while (!lfs_fits(fs, fsb)) {
415 1.32 perseant /*
416 1.32 perseant * Out of space, need cleaner to run.
417 1.32 perseant * Update the cleaner info, then wake it up.
418 1.32 perseant * Note the cleanerinfo block is on the ifile
419 1.32 perseant * so it CANT_WAIT.
420 1.32 perseant */
421 1.32 perseant LFS_CLEANERINFO(cip, fs, cbp);
422 1.32 perseant LFS_SYNC_CLEANERINFO(cip, fs, cbp, 0);
423 1.79 perry
424 1.80 perseant #ifdef DEBUG
425 1.80 perseant DLOG((DLOG_AVAIL, "lfs_availwait: out of available space, "
426 1.80 perseant "waiting on cleaner\n"));
427 1.78 perseant #endif
428 1.79 perry
429 1.32 perseant wakeup(&lfs_allclean_wakeup);
430 1.32 perseant wakeup(&fs->lfs_nextseg);
431 1.32 perseant #ifdef DIAGNOSTIC
432 1.82 perseant if (LFS_SEGLOCK_HELD(fs))
433 1.32 perseant panic("lfs_availwait: deadlock");
434 1.32 perseant #endif
435 1.32 perseant error = tsleep(&fs->lfs_avail, PCATCH | PUSER, "cleaner", 0);
436 1.32 perseant if (error)
437 1.32 perseant return (error);
438 1.32 perseant }
439 1.32 perseant return 0;
440 1.32 perseant }
441 1.32 perseant
442 1.32 perseant int
443 1.36 perseant lfs_bwrite_ext(struct buf *bp, int flags)
444 1.7 perseant {
445 1.1 mycroft struct lfs *fs;
446 1.1 mycroft struct inode *ip;
447 1.51 yamt int fsb, s;
448 1.48 yamt
449 1.85 perseant fs = VFSTOUFS(bp->b_vp->v_mount)->um_lfs;
450 1.85 perseant
451 1.85 perseant ASSERT_MAYBE_SEGLOCK(fs);
452 1.48 yamt KASSERT(bp->b_flags & B_BUSY);
453 1.58 perseant KASSERT(flags & BW_CLEAN || !LFS_IS_MALLOC_BUF(bp));
454 1.75 yamt KASSERT((bp->b_flags & (B_DELWRI|B_LOCKED)) != B_DELWRI);
455 1.75 yamt KASSERT((bp->b_flags & (B_DELWRI|B_LOCKED)) != B_LOCKED);
456 1.48 yamt
457 1.1 mycroft /*
458 1.85 perseant * Don't write *any* blocks if we're mounted read-only, or
459 1.85 perseant * if we are "already unmounted".
460 1.85 perseant *
461 1.16 perseant * In particular the cleaner can't write blocks either.
462 1.16 perseant */
463 1.85 perseant if (fs->lfs_ronly || (fs->lfs_pflags & LFS_PF_CLEAN)) {
464 1.32 perseant bp->b_flags &= ~(B_DELWRI | B_READ | B_ERROR);
465 1.32 perseant LFS_UNLOCK_BUF(bp);
466 1.58 perseant if (LFS_IS_MALLOC_BUF(bp))
467 1.16 perseant bp->b_flags &= ~B_BUSY;
468 1.16 perseant else
469 1.16 perseant brelse(bp);
470 1.85 perseant return (fs->lfs_ronly ? EROFS : 0);
471 1.16 perseant }
472 1.16 perseant
473 1.16 perseant /*
474 1.1 mycroft * Set the delayed write flag and use reassignbuf to move the buffer
475 1.1 mycroft * from the clean list to the dirty one.
476 1.1 mycroft *
477 1.1 mycroft * Set the B_LOCKED flag and unlock the buffer, causing brelse to move
478 1.1 mycroft * the buffer onto the LOCKED free list. This is necessary, otherwise
479 1.1 mycroft * getnewbuf() would try to reclaim the buffers using bawrite, which
480 1.1 mycroft * isn't going to work.
481 1.1 mycroft *
482 1.1 mycroft * XXX we don't let meta-data writes run out of space because they can
483 1.1 mycroft * come from the segment writer. We need to make sure that there is
484 1.1 mycroft * enough space reserved so that there's room to write meta-data
485 1.1 mycroft * blocks.
486 1.1 mycroft */
487 1.1 mycroft if (!(bp->b_flags & B_LOCKED)) {
488 1.36 perseant fsb = fragstofsb(fs, numfrags(fs, bp->b_bcount));
489 1.79 perry
490 1.7 perseant ip = VTOI(bp->b_vp);
491 1.48 yamt if (flags & BW_CLEAN) {
492 1.26 perseant LFS_SET_UINO(ip, IN_CLEANING);
493 1.7 perseant } else {
494 1.36 perseant LFS_SET_UINO(ip, IN_MODIFIED);
495 1.7 perseant }
496 1.36 perseant fs->lfs_avail -= fsb;
497 1.32 perseant bp->b_flags |= B_DELWRI;
498 1.32 perseant
499 1.32 perseant LFS_LOCK_BUF(bp);
500 1.43 perseant bp->b_flags &= ~(B_READ | B_DONE | B_ERROR);
501 1.14 fvdl s = splbio();
502 1.1 mycroft reassignbuf(bp, bp->b_vp);
503 1.1 mycroft splx(s);
504 1.1 mycroft }
505 1.79 perry
506 1.40 chs if (bp->b_flags & B_CALL)
507 1.7 perseant bp->b_flags &= ~B_BUSY;
508 1.7 perseant else
509 1.7 perseant brelse(bp);
510 1.79 perry
511 1.1 mycroft return (0);
512 1.1 mycroft }
513 1.1 mycroft
514 1.82 perseant /*
515 1.82 perseant * Called and return with the lfs_interlock held, but the lfs_subsys_lock
516 1.82 perseant * not held.
517 1.82 perseant */
518 1.24 perseant void
519 1.36 perseant lfs_flush_fs(struct lfs *fs, int flags)
520 1.11 perseant {
521 1.82 perseant ASSERT_NO_SEGLOCK(fs);
522 1.82 perseant LOCK_ASSERT(simple_lock_held(&fs->lfs_interlock));
523 1.82 perseant LOCK_ASSERT(!simple_lock_held(&lfs_subsys_lock));
524 1.58 perseant if (fs->lfs_ronly)
525 1.58 perseant return;
526 1.11 perseant
527 1.82 perseant simple_lock(&lfs_subsys_lock);
528 1.82 perseant if (lfs_dostats)
529 1.82 perseant ++lfs_stats.flush_invoked;
530 1.82 perseant simple_unlock(&lfs_subsys_lock);
531 1.78 perseant
532 1.82 perseant simple_unlock(&fs->lfs_interlock);
533 1.67 yamt lfs_writer_enter(fs, "fldirop");
534 1.58 perseant lfs_segwrite(fs->lfs_ivnode->v_mount, flags);
535 1.82 perseant lfs_writer_leave(fs);
536 1.82 perseant simple_lock(&fs->lfs_interlock);
537 1.78 perseant fs->lfs_favail = 0; /* XXX */
538 1.11 perseant }
539 1.11 perseant
540 1.1 mycroft /*
541 1.81 perseant * This routine initiates segment writes when LFS is consuming too many
542 1.81 perseant * resources. Ideally the pageout daemon would be able to direct LFS
543 1.81 perseant * more subtly.
544 1.81 perseant * XXX We have one static count of locked buffers;
545 1.81 perseant * XXX need to think more about the multiple filesystem case.
546 1.71 yamt *
547 1.81 perseant * Called and return with lfs_subsys_lock held.
548 1.83 perseant * If fs != NULL, we hold the segment lock for fs.
549 1.1 mycroft */
550 1.1 mycroft void
551 1.78 perseant lfs_flush(struct lfs *fs, int flags, int only_onefs)
552 1.1 mycroft {
553 1.78 perseant extern u_int64_t locked_fakequeue_count;
554 1.17 augustss struct mount *mp, *nmp;
555 1.83 perseant struct lfs *tfs;
556 1.67 yamt
557 1.71 yamt LOCK_ASSERT(simple_lock_held(&lfs_subsys_lock));
558 1.67 yamt KDASSERT(fs == NULL || !LFS_SEGLOCK_HELD(fs));
559 1.79 perry
560 1.79 perry if (lfs_dostats)
561 1.7 perseant ++lfs_stats.write_exceeded;
562 1.81 perseant /* XXX should we include SEGM_CKP here? */
563 1.84 perseant if (lfs_writing && !(flags & SEGM_SYNC)) {
564 1.80 perseant DLOG((DLOG_FLUSH, "lfs_flush: not flushing because another flush is active\n"));
565 1.1 mycroft return;
566 1.16 perseant }
567 1.81 perseant while (lfs_writing)
568 1.71 yamt ltsleep(&lfs_writing, PRIBIO + 1, "lfsflush", 0,
569 1.82 perseant &lfs_subsys_lock);
570 1.1 mycroft lfs_writing = 1;
571 1.79 perry
572 1.64 perseant simple_unlock(&lfs_subsys_lock);
573 1.58 perseant
574 1.78 perseant if (only_onefs) {
575 1.83 perseant KASSERT(fs != NULL);
576 1.83 perseant if (vfs_busy(fs->lfs_ivnode->v_mount, LK_NOWAIT,
577 1.83 perseant &mountlist_slock))
578 1.78 perseant goto errout;
579 1.83 perseant simple_lock(&fs->lfs_interlock);
580 1.78 perseant lfs_flush_fs(fs, flags);
581 1.83 perseant simple_unlock(&fs->lfs_interlock);
582 1.78 perseant vfs_unbusy(fs->lfs_ivnode->v_mount);
583 1.78 perseant } else {
584 1.78 perseant locked_fakequeue_count = 0;
585 1.78 perseant simple_lock(&mountlist_slock);
586 1.78 perseant for (mp = CIRCLEQ_FIRST(&mountlist); mp != (void *)&mountlist;
587 1.78 perseant mp = nmp) {
588 1.78 perseant if (vfs_busy(mp, LK_NOWAIT, &mountlist_slock)) {
589 1.80 perseant DLOG((DLOG_FLUSH, "lfs_flush: fs vfs_busy\n"));
590 1.78 perseant nmp = CIRCLEQ_NEXT(mp, mnt_list);
591 1.78 perseant continue;
592 1.78 perseant }
593 1.78 perseant if (strncmp(&mp->mnt_stat.f_fstypename[0], MOUNT_LFS,
594 1.83 perseant MFSNAMELEN) == 0) {
595 1.83 perseant tfs = VFSTOUFS(mp)->um_lfs;
596 1.83 perseant simple_lock(&tfs->lfs_interlock);
597 1.83 perseant lfs_flush_fs(tfs, flags);
598 1.83 perseant simple_unlock(&tfs->lfs_interlock);
599 1.83 perseant }
600 1.78 perseant simple_lock(&mountlist_slock);
601 1.69 yamt nmp = CIRCLEQ_NEXT(mp, mnt_list);
602 1.78 perseant vfs_unbusy(mp);
603 1.6 fvdl }
604 1.78 perseant simple_unlock(&mountlist_slock);
605 1.1 mycroft }
606 1.43 perseant LFS_DEBUG_COUNTLOCKED("flush");
607 1.78 perseant wakeup(&lfs_subsys_pages);
608 1.7 perseant
609 1.78 perseant errout:
610 1.71 yamt simple_lock(&lfs_subsys_lock);
611 1.71 yamt KASSERT(lfs_writing);
612 1.1 mycroft lfs_writing = 0;
613 1.60 yamt wakeup(&lfs_writing);
614 1.1 mycroft }
615 1.1 mycroft
616 1.41 perseant #define INOCOUNT(fs) howmany((fs)->lfs_uinodes, INOPB(fs))
617 1.65 fvdl #define INOBYTES(fs) ((fs)->lfs_uinodes * sizeof (struct ufs1_dinode))
618 1.41 perseant
619 1.70 yamt /*
620 1.70 yamt * make sure that we don't have too many locked buffers.
621 1.70 yamt * flush buffers if needed.
622 1.70 yamt */
623 1.1 mycroft int
624 1.56 fvdl lfs_check(struct vnode *vp, daddr_t blkno, int flags)
625 1.1 mycroft {
626 1.1 mycroft int error;
627 1.10 perseant struct lfs *fs;
628 1.20 perseant struct inode *ip;
629 1.78 perseant extern pid_t lfs_writer_daemon;
630 1.10 perseant
631 1.1 mycroft error = 0;
632 1.20 perseant ip = VTOI(vp);
633 1.79 perry
634 1.7 perseant /* If out of buffers, wait on writer */
635 1.7 perseant /* XXX KS - if it's the Ifile, we're probably the cleaner! */
636 1.20 perseant if (ip->i_number == LFS_IFILE_INUM)
637 1.20 perseant return 0;
638 1.20 perseant /* If we're being called from inside a dirop, don't sleep */
639 1.20 perseant if (ip->i_flag & IN_ADIROP)
640 1.7 perseant return 0;
641 1.7 perseant
642 1.20 perseant fs = ip->i_lfs;
643 1.20 perseant
644 1.82 perseant ASSERT_NO_SEGLOCK(fs);
645 1.82 perseant LOCK_ASSERT(!simple_lock_held(&fs->lfs_interlock));
646 1.82 perseant
647 1.20 perseant /*
648 1.20 perseant * If we would flush below, but dirops are active, sleep.
649 1.20 perseant * Note that a dirop cannot ever reach this code!
650 1.20 perseant */
651 1.82 perseant simple_lock(&fs->lfs_interlock);
652 1.64 perseant simple_lock(&lfs_subsys_lock);
653 1.20 perseant while (fs->lfs_dirops > 0 &&
654 1.41 perseant (locked_queue_count + INOCOUNT(fs) > LFS_MAX_BUFS ||
655 1.61 perseant locked_queue_bytes + INOBYTES(fs) > LFS_MAX_BYTES ||
656 1.58 perseant lfs_subsys_pages > LFS_MAX_PAGES ||
657 1.61 perseant lfs_dirvcount > LFS_MAX_DIROP || fs->lfs_diropwait > 0))
658 1.20 perseant {
659 1.82 perseant simple_unlock(&lfs_subsys_lock);
660 1.20 perseant ++fs->lfs_diropwait;
661 1.64 perseant ltsleep(&fs->lfs_writer, PRIBIO+1, "bufdirop", 0,
662 1.82 perseant &fs->lfs_interlock);
663 1.20 perseant --fs->lfs_diropwait;
664 1.82 perseant simple_lock(&lfs_subsys_lock);
665 1.20 perseant }
666 1.10 perseant
667 1.80 perseant #ifdef DEBUG
668 1.58 perseant if (locked_queue_count + INOCOUNT(fs) > LFS_MAX_BUFS)
669 1.80 perseant DLOG((DLOG_FLUSH, "lfs_check: lqc = %d, max %d\n",
670 1.80 perseant locked_queue_count + INOCOUNT(fs), LFS_MAX_BUFS));
671 1.58 perseant if (locked_queue_bytes + INOBYTES(fs) > LFS_MAX_BYTES)
672 1.80 perseant DLOG((DLOG_FLUSH, "lfs_check: lqb = %ld, max %ld\n",
673 1.80 perseant locked_queue_bytes + INOBYTES(fs), LFS_MAX_BYTES));
674 1.58 perseant if (lfs_subsys_pages > LFS_MAX_PAGES)
675 1.82 perseant DLOG((DLOG_FLUSH, "lfs_check: lssp = %d, max %d\n",
676 1.82 perseant lfs_subsys_pages, LFS_MAX_PAGES));
677 1.78 perseant if (lfs_fs_pagetrip && fs->lfs_pages > lfs_fs_pagetrip)
678 1.82 perseant DLOG((DLOG_FLUSH, "lfs_check: fssp = %d, trip at %d\n",
679 1.82 perseant fs->lfs_pages, lfs_fs_pagetrip));
680 1.58 perseant if (lfs_dirvcount > LFS_MAX_DIROP)
681 1.82 perseant DLOG((DLOG_FLUSH, "lfs_check: ldvc = %d, max %d\n",
682 1.82 perseant lfs_dirvcount, LFS_MAX_DIROP));
683 1.58 perseant if (fs->lfs_diropwait > 0)
684 1.82 perseant DLOG((DLOG_FLUSH, "lfs_check: ldvw = %d\n",
685 1.82 perseant fs->lfs_diropwait));
686 1.58 perseant #endif
687 1.64 perseant
688 1.41 perseant if (locked_queue_count + INOCOUNT(fs) > LFS_MAX_BUFS ||
689 1.41 perseant locked_queue_bytes + INOBYTES(fs) > LFS_MAX_BYTES ||
690 1.58 perseant lfs_subsys_pages > LFS_MAX_PAGES ||
691 1.71 yamt lfs_dirvcount > LFS_MAX_DIROP || fs->lfs_diropwait > 0) {
692 1.83 perseant simple_unlock(&fs->lfs_interlock);
693 1.78 perseant lfs_flush(fs, flags, 0);
694 1.80 perseant } else if (lfs_fs_pagetrip && fs->lfs_pages > lfs_fs_pagetrip) {
695 1.80 perseant /*
696 1.80 perseant * If we didn't flush the whole thing, some filesystems
697 1.80 perseant * still might want to be flushed.
698 1.80 perseant */
699 1.78 perseant ++fs->lfs_pdflush;
700 1.78 perseant wakeup(&lfs_writer_daemon);
701 1.83 perseant simple_unlock(&fs->lfs_interlock);
702 1.83 perseant } else
703 1.83 perseant simple_unlock(&fs->lfs_interlock);
704 1.11 perseant
705 1.58 perseant while (locked_queue_count + INOCOUNT(fs) > LFS_WAIT_BUFS ||
706 1.58 perseant locked_queue_bytes + INOBYTES(fs) > LFS_WAIT_BYTES ||
707 1.58 perseant lfs_subsys_pages > LFS_WAIT_PAGES ||
708 1.71 yamt lfs_dirvcount > LFS_MAX_DIROP) {
709 1.82 perseant
710 1.40 chs if (lfs_dostats)
711 1.7 perseant ++lfs_stats.wait_exceeded;
712 1.80 perseant DLOG((DLOG_AVAIL, "lfs_check: waiting: count=%d, bytes=%ld\n",
713 1.80 perseant locked_queue_count, locked_queue_bytes));
714 1.82 perseant error = ltsleep(&locked_queue_count, PCATCH | PUSER,
715 1.82 perseant "buffers", hz * LFS_BUFWAIT, &lfs_subsys_lock);
716 1.82 perseant if (error != EWOULDBLOCK)
717 1.33 perseant break;
718 1.82 perseant
719 1.18 perseant /*
720 1.18 perseant * lfs_flush might not flush all the buffers, if some of the
721 1.33 perseant * inodes were locked or if most of them were Ifile blocks
722 1.61 perseant * and we weren't asked to checkpoint. Try flushing again
723 1.33 perseant * to keep us from blocking indefinitely.
724 1.18 perseant */
725 1.41 perseant if (locked_queue_count + INOCOUNT(fs) > LFS_MAX_BUFS ||
726 1.71 yamt locked_queue_bytes + INOBYTES(fs) > LFS_MAX_BYTES) {
727 1.78 perseant lfs_flush(fs, flags | SEGM_CKP, 0);
728 1.18 perseant }
729 1.7 perseant }
730 1.64 perseant simple_unlock(&lfs_subsys_lock);
731 1.7 perseant return (error);
732 1.7 perseant }
733 1.1 mycroft
734 1.7 perseant /*
735 1.7 perseant * Allocate a new buffer header.
736 1.7 perseant */
737 1.34 perseant struct buf *
738 1.58 perseant lfs_newbuf(struct lfs *fs, struct vnode *vp, daddr_t daddr, size_t size, int type)
739 1.7 perseant {
740 1.7 perseant struct buf *bp;
741 1.7 perseant size_t nbytes;
742 1.7 perseant int s;
743 1.79 perry
744 1.82 perseant ASSERT_MAYBE_SEGLOCK(fs);
745 1.36 perseant nbytes = roundup(size, fsbtob(fs, 1));
746 1.79 perry
747 1.58 perseant s = splbio();
748 1.58 perseant bp = pool_get(&bufpool, PR_WAITOK);
749 1.58 perseant splx(s);
750 1.58 perseant memset(bp, 0, sizeof(struct buf));
751 1.62 thorpej BUF_INIT(bp);
752 1.43 perseant if (nbytes) {
753 1.58 perseant bp->b_data = lfs_malloc(fs, nbytes, type);
754 1.58 perseant /* memset(bp->b_data, 0, nbytes); */
755 1.7 perseant }
756 1.79 perry #ifdef DIAGNOSTIC
757 1.40 chs if (vp == NULL)
758 1.7 perseant panic("vp is NULL in lfs_newbuf");
759 1.40 chs if (bp == NULL)
760 1.7 perseant panic("bp is NULL after malloc in lfs_newbuf");
761 1.1 mycroft #endif
762 1.7 perseant s = splbio();
763 1.7 perseant bgetvp(vp, bp);
764 1.7 perseant splx(s);
765 1.57 pk
766 1.7 perseant bp->b_bufsize = size;
767 1.7 perseant bp->b_bcount = size;
768 1.7 perseant bp->b_lblkno = daddr;
769 1.7 perseant bp->b_blkno = daddr;
770 1.7 perseant bp->b_error = 0;
771 1.7 perseant bp->b_resid = 0;
772 1.7 perseant bp->b_iodone = lfs_callback;
773 1.7 perseant bp->b_flags |= B_BUSY | B_CALL | B_NOCACHE;
774 1.76 yamt bp->b_private = fs;
775 1.79 perry
776 1.7 perseant return (bp);
777 1.7 perseant }
778 1.7 perseant
779 1.7 perseant void
780 1.58 perseant lfs_freebuf(struct lfs *fs, struct buf *bp)
781 1.7 perseant {
782 1.7 perseant int s;
783 1.79 perry
784 1.7 perseant s = splbio();
785 1.40 chs if (bp->b_vp)
786 1.7 perseant brelvp(bp);
787 1.7 perseant if (!(bp->b_flags & B_INVAL)) { /* B_INVAL indicates a "fake" buffer */
788 1.58 perseant lfs_free(fs, bp->b_data, LFS_NB_UNKNOWN);
789 1.7 perseant bp->b_data = NULL;
790 1.1 mycroft }
791 1.58 perseant pool_put(&bufpool, bp);
792 1.58 perseant splx(s);
793 1.7 perseant }
794 1.1 mycroft
795 1.7 perseant /*
796 1.7 perseant * Definitions for the buffer free lists.
797 1.7 perseant */
798 1.7 perseant #define BQUEUES 4 /* number of free buffer queues */
799 1.79 perry
800 1.7 perseant #define BQ_LOCKED 0 /* super-blocks &c */
801 1.7 perseant #define BQ_LRU 1 /* lru, useful buffers */
802 1.79 perry #define BQ_AGE 2 /* rubbish */
803 1.7 perseant #define BQ_EMPTY 3 /* buffer headers with no memory */
804 1.79 perry
805 1.7 perseant extern TAILQ_HEAD(bqueues, buf) bufqueues[BQUEUES];
806 1.73 yamt extern struct simplelock bqueue_slock;
807 1.7 perseant
808 1.7 perseant /*
809 1.80 perseant * Count buffers on the "locked" queue, and compare it to a pro-forma count.
810 1.27 perseant * Don't count malloced buffers, since they don't detract from the total.
811 1.7 perseant */
812 1.7 perseant void
813 1.86 christos lfs_countlocked(int *count, long *bytes, const char *msg)
814 1.7 perseant {
815 1.17 augustss struct buf *bp;
816 1.17 augustss int n = 0;
817 1.17 augustss long int size = 0L;
818 1.73 yamt int s;
819 1.7 perseant
820 1.73 yamt s = splbio();
821 1.73 yamt simple_lock(&bqueue_slock);
822 1.69 yamt TAILQ_FOREACH(bp, &bufqueues[BQ_LOCKED], b_freelist) {
823 1.73 yamt KASSERT(!(bp->b_flags & B_CALL));
824 1.7 perseant n++;
825 1.7 perseant size += bp->b_bufsize;
826 1.80 perseant #ifdef DIAGNOSTIC
827 1.27 perseant if (n > nbuf)
828 1.27 perseant panic("lfs_countlocked: this can't happen: more"
829 1.27 perseant " buffers locked than exist");
830 1.27 perseant #endif
831 1.7 perseant }
832 1.80 perseant /*
833 1.80 perseant * Theoretically this function never really does anything.
834 1.80 perseant * Give a warning if we have to fix the accounting.
835 1.80 perseant */
836 1.27 perseant if (n != *count)
837 1.80 perseant DLOG((DLOG_LLIST, "lfs_countlocked: %s: adjusted buf count"
838 1.80 perseant " from %d to %d\n", msg, *count, n));
839 1.27 perseant if (size != *bytes)
840 1.80 perseant DLOG((DLOG_LLIST, "lfs_countlocked: %s: adjusted byte count"
841 1.80 perseant " from %ld to %ld\n", msg, *bytes, size));
842 1.7 perseant *count = n;
843 1.7 perseant *bytes = size;
844 1.73 yamt simple_unlock(&bqueue_slock);
845 1.73 yamt splx(s);
846 1.7 perseant return;
847 1.1 mycroft }
848