2 * Copyright (c) 2000-2002 Apple Computer, Inc. All rights reserved.
4 * @APPLE_LICENSE_HEADER_START@
6 * Copyright (c) 1999-2003 Apple Computer, Inc. All Rights Reserved.
8 * This file contains Original Code and/or Modifications of Original Code
9 * as defined in and that are subject to the Apple Public Source License
10 * Version 2.0 (the 'License'). You may not use this file except in
11 * compliance with the License. Please obtain a copy of the License at
12 * http://www.opensource.apple.com/apsl/ and read it before using this
15 * The Original Code and all software distributed under the License are
16 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
17 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
18 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
20 * Please see the License for the specific language governing rights and
21 * limitations under the License.
23 * @APPLE_LICENSE_HEADER_END@
25 /* Copyright (c) 1995 NeXT Computer, Inc. All Rights Reserved */
27 * Copyright (c) 1994 Christopher G. Demetriou
28 * Copyright (c) 1982, 1986, 1989, 1993
29 * The Regents of the University of California. All rights reserved.
30 * (c) UNIX System Laboratories, Inc.
31 * All or some portions of this file are derived from material licensed
32 * to the University of California by American Telephone and Telegraph
33 * Co. or Unix System Laboratories, Inc. and are reproduced herein with
34 * the permission of UNIX System Laboratories, Inc.
36 * Redistribution and use in source and binary forms, with or without
37 * modification, are permitted provided that the following conditions
39 * 1. Redistributions of source code must retain the above copyright
40 * notice, this list of conditions and the following disclaimer.
41 * 2. Redistributions in binary form must reproduce the above copyright
42 * notice, this list of conditions and the following disclaimer in the
43 * documentation and/or other materials provided with the distribution.
44 * 3. All advertising materials mentioning features or use of this software
45 * must display the following acknowledgement:
46 * This product includes software developed by the University of
47 * California, Berkeley and its contributors.
48 * 4. Neither the name of the University nor the names of its contributors
49 * may be used to endorse or promote products derived from this software
50 * without specific prior written permission.
52 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
53 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
54 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
55 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
56 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
57 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
58 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
59 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
60 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
61 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
64 * The NEXTSTEP Software License Agreement specifies the terms
65 * and conditions for redistribution.
67 * @(#)vfs_bio.c 8.6 (Berkeley) 1/11/94
72 * Bach: The Design of the UNIX Operating System (Prentice Hall, 1986)
73 * Leffler, et al.: The Design and Implementation of the 4.3BSD
74 * UNIX Operating System (Addison Welley, 1989)
77 #include <sys/param.h>
78 #include <sys/systm.h>
81 #include <sys/vnode.h>
82 #include <sys/mount.h>
83 #include <sys/trace.h>
84 #include <sys/malloc.h>
85 #include <sys/resourcevar.h>
86 #include <miscfs/specfs/specdev.h>
88 #include <vm/vm_pageout.h>
90 #include <kern/assert.h>
91 #endif /* DIAGNOSTIC */
92 #include <kern/task.h>
93 #include <kern/zalloc.h>
95 #include <sys/kdebug.h>
96 #include <machine/spl.h>
98 static __inline__
void bufqinc(int q
);
99 static __inline__
void bufqdec(int q
);
101 static struct buf
*getnewbuf(int slpflag
, int slptimeo
, int *queue
);
102 static int bcleanbuf(struct buf
*bp
);
103 extern void vwakeup();
105 extern int niobuf
; /* The number of IO buffer headers for cluster IO */
108 /* zone allocated buffer headers */
109 static zone_t buf_hdr_zone
;
110 static int buf_hdr_count
;
113 struct proc
*traceproc
;
114 int tracewhich
, tracebuf
[TRCSIZ
];
116 char traceflags
[TR_NFLAGS
];
120 * Definitions for the buffer hash lists.
122 #define BUFHASH(dvp, lbn) \
123 (&bufhashtbl[((long)(dvp) / sizeof(*(dvp)) + (int)(lbn)) & bufhash])
124 LIST_HEAD(bufhashhdr
, buf
) *bufhashtbl
, invalhash
;
127 /* Definitions for the buffer stats. */
128 struct bufstats bufstats
;
130 /* Number of delayed write buffers */
134 * Insq/Remq for the buffer hash lists.
137 #define binshash(bp, dp) LIST_INSERT_HEAD(dp, bp, b_hash)
138 #define bremhash(bp) LIST_REMOVE(bp, b_hash)
142 TAILQ_HEAD(ioqueue
, buf
) iobufqueue
;
143 TAILQ_HEAD(bqueues
, buf
) bufqueues
[BQUEUES
];
144 static int needbuffer
;
145 static int need_iobuffer
;
148 * Insq/Remq for the buffer free lists.
150 #define binsheadfree(bp, dp, whichq) do { \
151 TAILQ_INSERT_HEAD(dp, bp, b_freelist); \
153 (bp)->b_whichq = whichq; \
154 (bp)->b_timestamp = time.tv_sec; \
157 #define binstailfree(bp, dp, whichq) do { \
158 TAILQ_INSERT_TAIL(dp, bp, b_freelist); \
160 (bp)->b_whichq = whichq; \
161 (bp)->b_timestamp = time.tv_sec; \
164 #define BHASHENTCHECK(bp) \
165 if ((bp)->b_hash.le_prev != (struct buf **)0xdeadbeef) \
166 panic("%x: b_hash.le_prev is not deadbeef", (bp));
168 #define BLISTNONE(bp) \
169 (bp)->b_hash.le_next = (struct buf *)0; \
170 (bp)->b_hash.le_prev = (struct buf **)0xdeadbeef;
173 * Insq/Remq for the vnode usage lists.
175 #define bufinsvn(bp, dp) LIST_INSERT_HEAD(dp, bp, b_vnbufs)
176 #define bufremvn(bp) { \
177 LIST_REMOVE(bp, b_vnbufs); \
178 (bp)->b_vnbufs.le_next = NOLIST; \
181 simple_lock_data_t bufhashlist_slock
; /* lock on buffer hash list */
183 /* number of per vnode, "in flight" buffer writes */
184 #define BUFWRITE_THROTTLE 9
188 * Time in seconds before a buffer on a list is
189 * considered as a stale buffer
191 #define LRU_IS_STALE 120 /* default value for the LRU */
192 #define AGE_IS_STALE 60 /* default value for the AGE */
193 #define META_IS_STALE 180 /* default value for the BQ_META */
195 int lru_is_stale
= LRU_IS_STALE
;
196 int age_is_stale
= AGE_IS_STALE
;
197 int meta_is_stale
= META_IS_STALE
;
199 /* LIST_INSERT_HEAD() with assertions */
200 static __inline__
void
201 blistenterhead(struct bufhashhdr
* head
, struct buf
* bp
)
203 if ((bp
->b_hash
.le_next
= (head
)->lh_first
) != NULL
)
204 (head
)->lh_first
->b_hash
.le_prev
= &(bp
)->b_hash
.le_next
;
205 (head
)->lh_first
= bp
;
206 bp
->b_hash
.le_prev
= &(head
)->lh_first
;
207 if (bp
->b_hash
.le_prev
== (struct buf
**)0xdeadbeef)
208 panic("blistenterhead: le_prev is deadbeef");
211 static __inline__
void
212 binshash(struct buf
*bp
, struct bufhashhdr
*dp
)
216 simple_lock(&bufhashlist_slock
);
219 if((bad
= incore(bp
->b_vp
, bp
->b_lblkno
)))
220 panic("binshash: already incore bp 0x%x, bad 0x%x\n", bp
, bad
);
226 for(; nbp
!= NULL
; nbp
= nbp
->b_hash
.le_next
) {
228 panic("buf already in hashlist");
231 blistenterhead(dp
, bp
);
232 simple_unlock(&bufhashlist_slock
);
235 static __inline__
void
236 bremhash(struct buf
*bp
)
238 simple_lock(&bufhashlist_slock
);
239 if (bp
->b_hash
.le_prev
== (struct buf
**)0xdeadbeef)
240 panic("bremhash le_prev is deadbeef");
241 if (bp
->b_hash
.le_next
== bp
)
242 panic("bremhash: next points to self");
244 if (bp
->b_hash
.le_next
!= NULL
)
245 bp
->b_hash
.le_next
->b_hash
.le_prev
= bp
->b_hash
.le_prev
;
246 *bp
->b_hash
.le_prev
= (bp
)->b_hash
.le_next
;
247 simple_unlock(&bufhashlist_slock
);
251 * Remove a buffer from the free list it's on
257 struct bqueues
*dp
= NULL
;
261 * We only calculate the head of the freelist when removing
262 * the last element of the list as that is the only time that
263 * it is needed (e.g. to reset the tail pointer).
265 * NB: This makes an assumption about how tailq's are implemented.
267 if (bp
->b_freelist
.tqe_next
== NULL
) {
268 for (dp
= bufqueues
; dp
< &bufqueues
[BQUEUES
]; dp
++)
269 if (dp
->tqh_last
== &bp
->b_freelist
.tqe_next
)
271 if (dp
== &bufqueues
[BQUEUES
])
272 panic("bremfree: lost tail");
274 TAILQ_REMOVE(dp
, bp
, b_freelist
);
275 whichq
= bp
->b_whichq
;
282 * Associate a buffer with a vnode.
286 register struct vnode
*vp
;
287 register struct buf
*bp
;
291 panic("bgetvp: not free");
294 if (vp
->v_type
== VBLK
|| vp
->v_type
== VCHR
)
295 bp
->b_dev
= vp
->v_rdev
;
299 * Insert onto list for new vnode.
301 bufinsvn(bp
, &vp
->v_cleanblkhd
);
305 * Disassociate a buffer from a vnode.
309 register struct buf
*bp
;
313 if (bp
->b_vp
== (struct vnode
*) 0)
314 panic("brelvp: NULL vp");
316 * Delete from old vnode list, if on one.
318 if (bp
->b_vnbufs
.le_next
!= NOLIST
)
321 bp
->b_vp
= (struct vnode
*) 0;
326 * Reassign a buffer from one vnode to another.
327 * Used to assign file specific control information
328 * (indirect blocks) to the vnode to which they belong.
331 reassignbuf(bp
, newvp
)
332 register struct buf
*bp
;
333 register struct vnode
*newvp
;
335 register struct buflists
*listheadp
;
338 printf("reassignbuf: NULL");
342 * Delete from old vnode list, if on one.
344 if (bp
->b_vnbufs
.le_next
!= NOLIST
)
347 * If dirty, put on list of dirty buffers;
348 * otherwise insert onto list of clean buffers.
350 if (ISSET(bp
->b_flags
, B_DELWRI
))
351 listheadp
= &newvp
->v_dirtyblkhd
;
353 listheadp
= &newvp
->v_cleanblkhd
;
354 bufinsvn(bp
, listheadp
);
357 static __inline__
void
358 bufhdrinit(struct buf
*bp
)
360 bzero((char *)bp
, sizeof *bp
);
362 bp
->b_rcred
= NOCRED
;
363 bp
->b_wcred
= NOCRED
;
364 bp
->b_vnbufs
.le_next
= NOLIST
;
365 bp
->b_flags
= B_INVAL
;
371 * Initialize buffers and hash links for buffers.
373 __private_extern__
void
376 register struct buf
*bp
;
377 register struct bqueues
*dp
;
381 static void bufzoneinit();
382 static void bcleanbuf_thread_init();
384 /* Initialize the buffer queues ('freelists') and the hash table */
385 for (dp
= bufqueues
; dp
< &bufqueues
[BQUEUES
]; dp
++)
387 bufhashtbl
= hashinit(nbuf
, M_CACHE
, &bufhash
);
389 simple_lock_init(&bufhashlist_slock
);
391 metabuf
= nbuf
/8; /* reserved for meta buf */
393 /* Initialize the buffer headers */
394 for (i
= 0; i
< nbuf
; i
++) {
399 * metabuf buffer headers on the meta-data list and
400 * rest of the buffer headers on the empty list
408 dp
= &bufqueues
[whichq
];
409 binsheadfree(bp
, dp
, whichq
);
410 binshash(bp
, &invalhash
);
413 for (; i
< nbuf
+ niobuf
; i
++) {
416 binsheadfree(bp
, &iobufqueue
, -1);
419 printf("using %d buffer headers and %d cluster IO buffer headers\n",
422 /* Set up zones used by the buffer cache */
425 /* start the bcleanbuf() thread */
426 bcleanbuf_thread_init();
430 static void bufq_balance_thread_init();
431 /* create a thread to do dynamic buffer queue balancing */
432 bufq_balance_thread_init();
438 bio_doread(vp
, blkno
, size
, cred
, async
, queuetype
)
446 register struct buf
*bp
;
447 struct proc
*p
= current_proc();
449 bp
= getblk(vp
, blkno
, size
, 0, 0, queuetype
);
452 * If buffer does not have data valid, start a read.
453 * Note that if buffer is B_INVAL, getblk() won't return it.
454 * Therefore, it's valid if it's I/O has completed or been delayed.
456 if (!ISSET(bp
->b_flags
, (B_DONE
| B_DELWRI
))) {
457 /* Start I/O for the buffer (keeping credentials). */
458 SET(bp
->b_flags
, B_READ
| async
);
459 if (cred
!= NOCRED
&& bp
->b_rcred
== NOCRED
) {
461 * NFS has embedded ucred.
462 * Can not crhold() here as that causes zone corruption
464 bp
->b_rcred
= crdup(cred
);
469 trace(TR_BREADMISS
, pack(vp
, size
), blkno
);
471 /* Pay for the read. */
473 p
->p_stats
->p_ru
.ru_inblock
++; /* XXX */
478 trace(TR_BREADHIT
, pack(vp
, size
), blkno
);
484 * This algorithm described in Bach (p.54).
487 bread(vp
, blkno
, size
, cred
, bpp
)
494 register struct buf
*bp
;
496 /* Get buffer for block. */
497 bp
= *bpp
= bio_doread(vp
, blkno
, size
, cred
, 0, BLK_READ
);
499 /* Wait for the read to complete, and return result. */
500 return (biowait(bp
));
504 * Read a disk block. [bread() for meta-data]
505 * This algorithm described in Bach (p.54).
508 meta_bread(vp
, blkno
, size
, cred
, bpp
)
515 register struct buf
*bp
;
517 /* Get buffer for block. */
518 bp
= *bpp
= bio_doread(vp
, blkno
, size
, cred
, 0, BLK_META
);
520 /* Wait for the read to complete, and return result. */
521 return (biowait(bp
));
525 * Read-ahead multiple disk blocks. The first is sync, the rest async.
526 * Trivial modification to the breada algorithm presented in Bach (p.55).
529 breadn(vp
, blkno
, size
, rablks
, rasizes
, nrablks
, cred
, bpp
)
531 daddr_t blkno
; int size
;
532 daddr_t rablks
[]; int rasizes
[];
537 register struct buf
*bp
;
540 bp
= *bpp
= bio_doread(vp
, blkno
, size
, cred
, 0, BLK_READ
);
543 * For each of the read-ahead blocks, start a read, if necessary.
545 for (i
= 0; i
< nrablks
; i
++) {
546 /* If it's in the cache, just go on to next one. */
547 if (incore(vp
, rablks
[i
]))
550 /* Get a buffer for the read-ahead block */
551 (void) bio_doread(vp
, rablks
[i
], rasizes
[i
], cred
, B_ASYNC
, BLK_READ
);
554 /* Otherwise, we had to start a read for it; wait until it's valid. */
555 return (biowait(bp
));
559 * Read with single-block read-ahead. Defined in Bach (p.55), but
560 * implemented as a call to breadn().
561 * XXX for compatibility with old file systems.
564 breada(vp
, blkno
, size
, rablkno
, rabsize
, cred
, bpp
)
566 daddr_t blkno
; int size
;
567 daddr_t rablkno
; int rabsize
;
572 return (breadn(vp
, blkno
, size
, &rablkno
, &rabsize
, 1, cred
, bpp
));
576 * Block write. Described in Bach (p.56)
582 int rv
, sync
, wasdelayed
;
583 struct proc
*p
= current_proc();
584 struct vnode
*vp
= bp
->b_vp
;
586 /* Remember buffer type, to switch on it later. */
587 sync
= !ISSET(bp
->b_flags
, B_ASYNC
);
588 wasdelayed
= ISSET(bp
->b_flags
, B_DELWRI
);
589 CLR(bp
->b_flags
, (B_READ
| B_DONE
| B_ERROR
| B_DELWRI
));
592 wakeup((caddr_t
)&nbdwrite
);
597 * If not synchronous, pay for the I/O operation and make
598 * sure the buf is on the correct vnode queue. We have
599 * to do this now, because if we don't, the vnode may not
600 * be properly notified that its I/O has completed.
606 p
->p_stats
->p_ru
.ru_oublock
++; /* XXX */
609 trace(TR_BUFWRITE
, pack(vp
, bp
->b_bcount
), bp
->b_lblkno
);
611 /* Initiate disk write. Make sure the appropriate party is charged. */
612 SET(bp
->b_flags
, B_WRITEINPROG
);
619 * If I/O was synchronous, wait for it to complete.
624 * Pay for the I/O operation, if it's not been paid for, and
625 * make sure it's on the correct vnode queue. (async operatings
626 * were payed for above.)
632 p
->p_stats
->p_ru
.ru_oublock
++; /* XXX */
634 /* Release the buffer. */
635 // XXXdbg - only if the unused bit is set
636 if (!ISSET(bp
->b_flags
, B_NORELSE
)) {
639 CLR(bp
->b_flags
, B_NORELSE
);
650 struct vop_bwrite_args
*ap
;
652 return (bwrite(ap
->a_bp
));
658 * The buffer is marked dirty, but is not queued for I/O.
659 * This routine should be used when the buffer is expected
660 * to be modified again soon, typically a small write that
661 * partially fills a buffer.
663 * NB: magnetic tapes cannot be delayed; they must be
664 * written in the order that the writes are requested.
666 * Described in Leffler, et al. (pp. 208-213).
668 * Note: With the abilitty to allocate additional buffer
669 * headers, we can get in to the situation where "too" many
670 * bdwrite()s can create situation where the kernel can create
671 * buffers faster than the disks can service. Doing a bawrite() in
672 * cases were we have "too many" outstanding bdwrite()s avoids that.
674 __private_extern__
int
675 bdwrite_internal(bp
, return_error
)
679 struct proc
*p
= current_proc();
680 struct vnode
*vp
= bp
->b_vp
;
683 * If the block hasn't been seen before:
684 * (1) Mark it as having been seen,
685 * (2) Charge for the write.
686 * (3) Make sure it's on its vnode's correct block list,
688 if (!ISSET(bp
->b_flags
, B_DELWRI
)) {
689 SET(bp
->b_flags
, B_DELWRI
);
691 p
->p_stats
->p_ru
.ru_oublock
++; /* XXX */
696 /* If this is a tape block, write it the block now. */
697 if (ISSET(bp
->b_flags
, B_TAPE
)) {
704 * If the vnode has "too many" write operations in progress
705 * wait for them to finish the IO
707 while (vp
->v_numoutput
>= BUFWRITE_THROTTLE
) {
708 vp
->v_flag
|= VTHROTTLED
;
709 (void)tsleep((caddr_t
)&vp
->v_numoutput
, PRIBIO
+ 1, "bdwrite", 0);
713 * If we have too many delayed write buffers,
714 * more than we can "safely" handle, just fall back to
715 * doing the async write
718 panic("bdwrite: Negative nbdwrite");
720 // can't do a bawrite() if the LOCKED bit is set because the
721 // buffer is part of a transaction and can't go to disk until
722 // the LOCKED bit is cleared.
723 if (!ISSET(bp
->b_flags
, B_LOCKED
) && nbdwrite
> ((nbuf
/4)*3)) {
731 /* Otherwise, the "write" is done, so mark and release the buffer. */
732 SET(bp
->b_flags
, B_DONE
);
741 (void) bdwrite_internal(bp
, 0);
746 * Asynchronous block write; just an asynchronous bwrite().
748 * Note: With the abilitty to allocate additional buffer
749 * headers, we can get in to the situation where "too" many
750 * bawrite()s can create situation where the kernel can create
751 * buffers faster than the disks can service.
752 * We limit the number of "in flight" writes a vnode can have to
756 bawrite_internal(bp
, throttle
)
760 struct vnode
*vp
= bp
->b_vp
;
764 * If the vnode has "too many" write operations in progress
765 * wait for them to finish the IO
767 while (vp
->v_numoutput
>= BUFWRITE_THROTTLE
) {
769 vp
->v_flag
|= VTHROTTLED
;
770 (void)tsleep((caddr_t
)&vp
->v_numoutput
,
771 PRIBIO
+ 1, "bawrite", 0);
773 return (EWOULDBLOCK
);
777 SET(bp
->b_flags
, B_ASYNC
);
786 (void) bawrite_internal(bp
, 1);
792 * Called prior to the locking of any vnodes when we are expecting to
793 * write. We do not want to starve the buffer cache with too many
794 * dirty buffers so we block here. By blocking prior to the locking
795 * of any vnodes we attempt to avoid the situation where a locked vnode
796 * prevents the various system daemons from flushing related buffers.
802 /* XXX To be implemented later */
806 * Release a buffer on to the free lists.
807 * Described in Bach (p. 46).
813 struct bqueues
*bufq
;
817 KERNEL_DEBUG((FSDBG_CODE(DBG_FSRW
, 388)) | DBG_FUNC_START
,
818 bp
->b_lblkno
* PAGE_SIZE
, (int)bp
, (int)bp
->b_data
,
821 trace(TR_BRELSE
, pack(bp
->b_vp
, bp
->b_bufsize
), bp
->b_lblkno
);
823 // if we're invalidating a buffer that has the B_CALL bit
824 // set then call the b_iodone function so it gets cleaned
827 if (ISSET(bp
->b_flags
, B_META
) && ISSET(bp
->b_flags
, B_INVAL
)) {
828 if (ISSET(bp
->b_flags
, B_CALL
) && !ISSET(bp
->b_flags
, B_DELWRI
)) {
829 panic("brelse: CALL flag set but not DELWRI! bp 0x%x\n", bp
);
831 if (ISSET(bp
->b_flags
, B_CALL
)) { /* if necessary, call out */
832 void (*iodone_func
)(struct buf
*) = bp
->b_iodone
;
834 CLR(bp
->b_flags
, B_CALL
); /* but note callout done */
837 if (iodone_func
== NULL
) {
838 panic("brelse: bp @ 0x%x has NULL b_iodone!\n", bp
);
844 /* IO is done. Cleanup the UPL state */
845 if (!ISSET(bp
->b_flags
, B_META
)
846 && UBCINFOEXISTS(bp
->b_vp
) && bp
->b_bufsize
) {
851 if ( !ISSET(bp
->b_flags
, B_PAGELIST
)) {
852 if ( !ISSET(bp
->b_flags
, B_INVAL
)) {
853 kret
= ubc_create_upl(bp
->b_vp
,
854 ubc_blktooff(bp
->b_vp
, bp
->b_lblkno
),
859 if (kret
!= KERN_SUCCESS
)
860 panic("brelse: Failed to get pagelists");
862 upl_ubc_alias_set(upl
, bp
, 5);
863 #endif /* UBC_DEBUG */
867 upl
= bp
->b_pagelist
;
868 kret
= ubc_upl_unmap(upl
);
870 if (kret
!= KERN_SUCCESS
)
871 panic("kernel_upl_unmap failed");
875 if (bp
->b_flags
& (B_ERROR
| B_INVAL
)) {
876 if (bp
->b_flags
& (B_READ
| B_INVAL
))
877 upl_flags
= UPL_ABORT_DUMP_PAGES
;
880 ubc_upl_abort(upl
, upl_flags
);
882 if (ISSET(bp
->b_flags
, B_NEEDCOMMIT
))
883 upl_flags
= UPL_COMMIT_CLEAR_DIRTY
;
884 else if (ISSET(bp
->b_flags
, B_DELWRI
| B_WASDIRTY
))
885 upl_flags
= UPL_COMMIT_SET_DIRTY
;
887 upl_flags
= UPL_COMMIT_CLEAR_DIRTY
;
888 ubc_upl_commit_range(upl
, 0, bp
->b_bufsize
, upl_flags
|
889 UPL_COMMIT_INACTIVATE
| UPL_COMMIT_FREE_ON_EMPTY
);
892 CLR(bp
->b_flags
, B_PAGELIST
);
897 if(ISSET(bp
->b_flags
, B_PAGELIST
))
898 panic("brelse: pagelist set for non VREG; vp=%x", bp
->b_vp
);
901 /* Wake up any processes waiting for any buffer to become free. */
907 /* Wake up any proceeses waiting for _this_ buffer to become free. */
908 if (ISSET(bp
->b_flags
, B_WANTED
)) {
909 CLR(bp
->b_flags
, B_WANTED
);
913 /* Block disk interrupts. */
917 * Determine which queue the buffer should be on, then put it there.
920 /* If it's locked, don't report an error; try again later. */
921 if (ISSET(bp
->b_flags
, (B_LOCKED
|B_ERROR
)) == (B_LOCKED
|B_ERROR
))
922 CLR(bp
->b_flags
, B_ERROR
);
924 /* If it's not cacheable, or an error, mark it invalid. */
925 if (ISSET(bp
->b_flags
, (B_NOCACHE
|B_ERROR
)))
926 SET(bp
->b_flags
, B_INVAL
);
928 if ((bp
->b_bufsize
<= 0) || ISSET(bp
->b_flags
, B_INVAL
)) {
930 * If it's invalid or empty, dissociate it from its vnode
931 * and put on the head of the appropriate queue.
935 if (ISSET(bp
->b_flags
, B_DELWRI
)) {
936 CLR(bp
->b_flags
, B_DELWRI
);
938 wakeup((caddr_t
)&nbdwrite
);
940 if (bp
->b_bufsize
<= 0)
941 whichq
= BQ_EMPTY
; /* no data */
942 else if (ISSET(bp
->b_flags
, B_META
))
943 whichq
= BQ_META
; /* meta-data */
945 whichq
= BQ_AGE
; /* invalid data */
947 bufq
= &bufqueues
[whichq
];
948 binsheadfree(bp
, bufq
, whichq
);
951 * It has valid data. Put it on the end of the appropriate
952 * queue, so that it'll stick around for as long as possible.
954 if (ISSET(bp
->b_flags
, B_LOCKED
))
955 whichq
= BQ_LOCKED
; /* locked in core */
956 else if (ISSET(bp
->b_flags
, B_META
))
957 whichq
= BQ_META
; /* meta-data */
958 else if (ISSET(bp
->b_flags
, B_AGE
))
959 whichq
= BQ_AGE
; /* stale but valid data */
961 whichq
= BQ_LRU
; /* valid data */
963 bufq
= &bufqueues
[whichq
];
964 binstailfree(bp
, bufq
, whichq
);
967 /* Unlock the buffer. */
968 CLR(bp
->b_flags
, (B_AGE
| B_ASYNC
| B_BUSY
| B_NOCACHE
));
970 /* Allow disk interrupts. */
973 KERNEL_DEBUG((FSDBG_CODE(DBG_FSRW
, 388)) | DBG_FUNC_END
,
974 (int)bp
, (int)bp
->b_data
, bp
->b_flags
, 0, 0);
978 * Determine if a block is in the cache.
979 * Just look on what would be its hash chain. If it's there, return
980 * a pointer to it, unless it's marked invalid. If it's marked invalid,
981 * we normally don't return the buffer, unless the caller explicitly
991 bp
= BUFHASH(vp
, blkno
)->lh_first
;
993 /* Search hash chain */
994 for (; bp
!= NULL
; bp
= bp
->b_hash
.le_next
) {
995 if (bp
->b_lblkno
== blkno
&& bp
->b_vp
== vp
&&
996 !ISSET(bp
->b_flags
, B_INVAL
))
1004 /* XXX FIXME -- Update the comment to reflect the UBC changes (please) -- */
1006 * Get a block of requested size that is associated with
1007 * a given vnode and block offset. If it is found in the
1008 * block cache, mark it as having been found, make it busy
1009 * and return it. Otherwise, return an empty block of the
1010 * correct size. It is up to the caller to insure that the
1011 * cached blocks be of the correct size.
1014 getblk(vp
, blkno
, size
, slpflag
, slptimeo
, operation
)
1015 register struct vnode
*vp
;
1017 int size
, slpflag
, slptimeo
, operation
;
1022 upl_page_info_t
*pl
;
1027 KERNEL_DEBUG((FSDBG_CODE(DBG_FSRW
, 386)) | DBG_FUNC_START
,
1028 blkno
* PAGE_SIZE
, size
, operation
, 0, 0);
1032 if ((bp
= incore(vp
, blkno
))) {
1033 /* Found in the Buffer Cache */
1034 if (ISSET(bp
->b_flags
, B_BUSY
)) {
1036 switch (operation
) {
1040 SET(bp
->b_flags
, B_WANTED
);
1041 bufstats
.bufs_busyincore
++;
1042 err
= tsleep(bp
, slpflag
| (PRIBIO
+ 1), "getblk",
1046 * Callers who call with PCATCH or timeout are
1047 * willing to deal with the NULL pointer
1049 if (err
&& ((slpflag
& PCATCH
) ||
1050 ((err
== EWOULDBLOCK
) && slptimeo
)))
1057 /* pagein operation must not use getblk */
1058 panic("getblk: pagein for incore busy buffer");
1064 /* pageout operation must not use getblk */
1065 panic("getblk: pageout for incore busy buffer");
1071 panic("getblk: %d unknown operation 1", operation
);
1077 SET(bp
->b_flags
, (B_BUSY
| B_CACHE
));
1079 bufstats
.bufs_incore
++;
1083 if (ISSET(bp
->b_flags
, B_PAGELIST
))
1084 panic("pagelist buffer is not busy");
1086 switch (operation
) {
1089 if (UBCISVALID(bp
->b_vp
) && bp
->b_bufsize
) {
1090 kret
= ubc_create_upl(vp
,
1091 ubc_blktooff(vp
, bp
->b_lblkno
),
1096 if (kret
!= KERN_SUCCESS
)
1097 panic("Failed to get pagelists");
1099 SET(bp
->b_flags
, B_PAGELIST
);
1100 bp
->b_pagelist
= upl
;
1102 if (!upl_valid_page(pl
, 0)) {
1103 if (vp
->v_tag
!= VT_NFS
)
1104 panic("getblk: incore buffer without valid page");
1105 CLR(bp
->b_flags
, B_CACHE
);
1108 if (upl_dirty_page(pl
, 0))
1109 SET(bp
->b_flags
, B_WASDIRTY
);
1111 CLR(bp
->b_flags
, B_WASDIRTY
);
1113 kret
= ubc_upl_map(upl
, (vm_address_t
*)&(bp
->b_data
));
1114 if (kret
!= KERN_SUCCESS
)
1115 panic("getblk: ubc_upl_map() failed with (%d)",
1117 if (bp
->b_data
== 0)
1118 panic("ubc_upl_map mapped 0");
1124 * VM is not involved in IO for the meta data
1125 * buffer already has valid data
1128 panic("bp->b_data null incore buf=%x", bp
);
1133 panic("getblk: paging operation 1");
1137 panic("getblk: %d unknown operation 2", operation
);
1142 } else { /* not incore() */
1143 int queue
= BQ_EMPTY
; /* Start with no preference */
1146 if ((operation
== BLK_META
) || (UBCINVALID(vp
)) ||
1147 !(UBCINFOEXISTS(vp
))) {
1148 operation
= BLK_META
;
1150 if ((bp
= getnewbuf(slpflag
, slptimeo
, &queue
)) == NULL
)
1152 if (incore(vp
, blkno
)) {
1153 SET(bp
->b_flags
, B_INVAL
);
1154 binshash(bp
, &invalhash
);
1159 * NOTE: YOU CAN NOT BLOCK UNTIL binshash() HAS BEEN
1160 * CALLED! BE CAREFUL.
1164 * if it is meta, the queue may be set to other
1165 * type so reset as well as mark it to be B_META
1166 * so that when buffer is released it will goto META queue
1167 * Also, if the vnode is not VREG, then it is META
1169 if (operation
== BLK_META
) {
1170 SET(bp
->b_flags
, B_META
);
1174 bp
->b_blkno
= bp
->b_lblkno
= blkno
;
1178 * Insert in the hash so that incore() can find it
1180 binshash(bp
, BUFHASH(vp
, blkno
));
1188 switch (operation
) {
1190 /* buffer data is invalid */
1193 panic("bp->b_data is null %x",bp
);
1195 bufstats
.bufs_miss
++;
1197 /* wakeup the buffer */
1198 CLR(bp
->b_flags
, B_WANTED
);
1205 if (ISSET(bp
->b_flags
, B_PAGELIST
))
1206 panic("B_PAGELIST in bp=%x",bp
);
1208 kret
= ubc_create_upl(vp
,
1209 ubc_blktooff(vp
, blkno
),
1214 if (kret
!= KERN_SUCCESS
)
1215 panic("Failed to get pagelists");
1218 upl_ubc_alias_set(upl
, bp
, 4);
1219 #endif /* UBC_DEBUG */
1220 bp
->b_pagelist
= upl
;
1222 SET(bp
->b_flags
, B_PAGELIST
);
1224 if (upl_valid_page(pl
, 0)) {
1225 SET(bp
->b_flags
, B_CACHE
| B_DONE
);
1226 bufstats
.bufs_vmhits
++;
1228 pagedirty
= upl_dirty_page(pl
, 0);
1231 SET(bp
->b_flags
, B_WASDIRTY
);
1233 if (vp
->v_tag
== VT_NFS
) {
1240 f_offset
= ubc_blktooff(vp
, blkno
);
1242 if (f_offset
> vp
->v_ubcinfo
->ui_size
) {
1243 CLR(bp
->b_flags
, (B_CACHE
|B_DONE
|B_WASDIRTY
));
1247 valid_size
= min(((unsigned int)(vp
->v_ubcinfo
->ui_size
- f_offset
)), PAGE_SIZE
);
1248 bp
->b_validend
= valid_size
;
1251 bp
->b_dirtyend
= valid_size
;
1255 KERNEL_DEBUG((FSDBG_CODE(DBG_FSRW
, 386)) | DBG_FUNC_NONE
,
1256 bp
->b_validend
, bp
->b_dirtyend
,
1257 (int)vp
->v_ubcinfo
->ui_size
, 0, 0);
1265 bp
->b_validend
= bp
->b_bcount
;
1266 bp
->b_dirtyend
= bp
->b_bcount
;
1269 bp
->b_validend
= bp
->b_bcount
;
1273 error
= VOP_BMAP(vp
, bp
->b_lblkno
, NULL
, &bp
->b_blkno
, NULL
);
1275 panic("getblk: VOP_BMAP failed");
1278 * XXX: We probably should invalidate the VM Page
1280 bp
->b_error
= error
;
1281 SET(bp
->b_flags
, (B_ERROR
| B_INVAL
));
1282 /* undo B_DONE that was set before upl_commit() */
1283 CLR(bp
->b_flags
, B_DONE
);
1288 bufstats
.bufs_miss
++;
1290 kret
= ubc_upl_map(upl
, (vm_address_t
*)&(bp
->b_data
));
1291 if (kret
!= KERN_SUCCESS
) {
1292 panic("getblk: ubc_upl_map() "
1293 "failed with (%d)", kret
);
1295 if (bp
->b_data
== 0)
1296 panic("kernel_upl_map mapped 0");
1302 panic("getblk: paging operation 2");
1305 panic("getblk: %d unknown operation 3", operation
);
1311 if (bp
->b_data
== NULL
)
1312 panic("getblk: bp->b_addr is null");
1314 if (bp
->b_bufsize
& 0xfff) {
1315 if (ISSET(bp
->b_flags
, B_META
) && (bp
->b_bufsize
& 0x1ff))
1316 panic("getblk: bp->b_bufsize = %d", bp
->b_bufsize
);
1319 KERNEL_DEBUG((FSDBG_CODE(DBG_FSRW
, 386)) | DBG_FUNC_END
,
1320 (int)bp
, (int)bp
->b_data
, bp
->b_flags
, 3, 0);
1326 * Get an empty, disassociated buffer of given size.
1333 int queue
= BQ_EMPTY
;
1335 while ((bp
= getnewbuf(0, 0, &queue
)) == 0)
1337 SET(bp
->b_flags
, (B_META
|B_INVAL
));
1340 assert(queue
== BQ_EMPTY
);
1341 #endif /* DIAGNOSTIC */
1342 /* XXX need to implement logic to deal with other queues */
1344 binshash(bp
, &invalhash
);
1346 bufstats
.bufs_eblk
++;
1352 * Zones for the meta data buffers
1356 #define MAXMETA 4096
1358 struct meta_zone_entry
{
1365 struct meta_zone_entry meta_zones
[] = {
1366 {NULL
, (MINMETA
* 1), 128 * (MINMETA
* 1), "buf.512" },
1367 {NULL
, (MINMETA
* 2), 64 * (MINMETA
* 2), "buf.1024" },
1368 {NULL
, (MINMETA
* 4), 16 * (MINMETA
* 4), "buf.2048" },
1369 {NULL
, (MINMETA
* 8), 512 * (MINMETA
* 8), "buf.4096" },
1370 {NULL
, 0, 0, "" } /* End */
1374 * Initialize the meta data zones
1381 for (i
= 0; meta_zones
[i
].mz_size
!= 0; i
++) {
1382 meta_zones
[i
].mz_zone
=
1383 zinit(meta_zones
[i
].mz_size
,
1384 meta_zones
[i
].mz_max
,
1386 meta_zones
[i
].mz_name
);
1388 buf_hdr_zone
= zinit(sizeof(struct buf
), 32, PAGE_SIZE
, "buf headers");
1391 static __inline__ zone_t
1392 getbufzone(size_t size
)
1396 if ((size
% 512) || (size
< MINMETA
) || (size
> MAXMETA
))
1397 panic("getbufzone: incorect size = %d", size
);
1399 for (i
= 0; meta_zones
[i
].mz_size
!= 0; i
++) {
1400 if (meta_zones
[i
].mz_size
>= size
)
1404 return (meta_zones
[i
].mz_zone
);
1408 * With UBC, there is no need to expand / shrink the file data
1409 * buffer. The VM uses the same pages, hence no waste.
1410 * All the file data buffers can have one size.
1411 * In fact expand / shrink would be an expensive operation.
1413 * Only exception to this is meta-data buffers. Most of the
1414 * meta data operations are smaller than PAGE_SIZE. Having the
1415 * meta-data buffers grow and shrink as needed, optimizes use
1416 * of the kernel wired memory.
1424 vm_size_t desired_size
;
1426 desired_size
= roundup(size
, CLBYTES
);
1428 if(desired_size
< PAGE_SIZE
)
1429 desired_size
= PAGE_SIZE
;
1430 if (desired_size
> MAXBSIZE
)
1431 panic("allocbuf: buffer larger than MAXBSIZE requested");
1433 if (ISSET(bp
->b_flags
, B_META
)) {
1436 size_t nsize
= roundup(size
, MINMETA
);
1439 vm_offset_t elem
= (vm_offset_t
)bp
->b_data
;
1441 if (ISSET(bp
->b_flags
, B_ZALLOC
))
1442 if (bp
->b_bufsize
<= MAXMETA
) {
1443 if (bp
->b_bufsize
< nsize
) {
1444 /* reallocate to a bigger size */
1445 desired_size
= nsize
;
1447 zprev
= getbufzone(bp
->b_bufsize
);
1448 z
= getbufzone(nsize
);
1449 bp
->b_data
= (caddr_t
)zalloc(z
);
1451 panic("allocbuf: zalloc() returned NULL");
1452 bcopy(elem
, bp
->b_data
, bp
->b_bufsize
);
1455 desired_size
= bp
->b_bufsize
;
1458 panic("allocbuf: B_ZALLOC set incorrectly");
1460 if (bp
->b_bufsize
< desired_size
) {
1461 /* reallocate to a bigger size */
1462 kret
= kmem_alloc(kernel_map
, &bp
->b_data
, desired_size
);
1463 if (kret
!= KERN_SUCCESS
)
1464 panic("allocbuf: kmem_alloc() returned %d", kret
);
1466 panic("allocbuf: null b_data");
1467 bcopy(elem
, bp
->b_data
, bp
->b_bufsize
);
1468 kmem_free(kernel_map
, elem
, bp
->b_bufsize
);
1470 desired_size
= bp
->b_bufsize
;
1473 /* new allocation */
1474 if (nsize
<= MAXMETA
) {
1475 desired_size
= nsize
;
1476 z
= getbufzone(nsize
);
1477 bp
->b_data
= (caddr_t
)zalloc(z
);
1479 panic("allocbuf: zalloc() returned NULL 2");
1480 SET(bp
->b_flags
, B_ZALLOC
);
1482 kret
= kmem_alloc(kernel_map
, &bp
->b_data
, desired_size
);
1483 if (kret
!= KERN_SUCCESS
)
1484 panic("allocbuf: kmem_alloc() 2 returned %d", kret
);
1486 panic("allocbuf: null b_data 2");
1491 if (ISSET(bp
->b_flags
, B_META
) && (bp
->b_data
== 0))
1492 panic("allocbuf: bp->b_data is NULL, buf @ 0x%x", bp
);
1494 bp
->b_bufsize
= desired_size
;
1495 bp
->b_bcount
= size
;
1500 * Get a new buffer from one of the free lists.
1502 * Request for a queue is passes in. The queue from which the buffer was taken
1503 * from is returned. Out of range queue requests get BQ_EMPTY. Request for
1504 * BQUEUE means no preference. Use heuristics in that case.
1505 * Heuristics is as follows:
1506 * Try BQ_AGE, BQ_LRU, BQ_EMPTY, BQ_META in that order.
1507 * If none available block till one is made available.
1508 * If buffers available on both BQ_AGE and BQ_LRU, check the timestamps.
1509 * Pick the most stale buffer.
1510 * If found buffer was marked delayed write, start the async. write
1511 * and restart the search.
1512 * Initialize the fields and disassociate the buffer from the vnode.
1513 * Remove the buffer from the hash. Return the buffer and the queue
1514 * on which it was found.
1518 getnewbuf(slpflag
, slptimeo
, queue
)
1519 int slpflag
, slptimeo
;
1522 register struct buf
*bp
;
1523 register struct buf
*lru_bp
;
1524 register struct buf
*age_bp
;
1525 register struct buf
*meta_bp
;
1526 register int age_time
, lru_time
, bp_time
, meta_time
;
1528 int req
= *queue
; /* save it for restarts */
1533 /* invalid request gets empty queue */
1534 if ((*queue
> BQUEUES
) || (*queue
< 0)
1535 || (*queue
== BQ_LAUNDRY
) || (*queue
== BQ_LOCKED
))
1538 /* (*queue == BQUEUES) means no preference */
1539 if (*queue
!= BQUEUES
) {
1540 /* Try for the requested queue first */
1541 bp
= bufqueues
[*queue
].tqh_first
;
1546 /* Unable to use requested queue */
1547 age_bp
= bufqueues
[BQ_AGE
].tqh_first
;
1548 lru_bp
= bufqueues
[BQ_LRU
].tqh_first
;
1549 meta_bp
= bufqueues
[BQ_META
].tqh_first
;
1551 if (!age_bp
&& !lru_bp
&& !meta_bp
) {
1553 * Unavailble on AGE or LRU or META queues
1554 * Try the empty list first
1556 bp
= bufqueues
[BQ_EMPTY
].tqh_first
;
1562 /* Create a new temparory buffer header */
1563 bp
= (struct buf
*)zalloc(buf_hdr_zone
);
1568 binshash(bp
, &invalhash
);
1569 SET(bp
->b_flags
, B_HDRALLOC
);
1571 binsheadfree(bp
, &bufqueues
[BQ_EMPTY
], BQ_EMPTY
);
1576 /* Log this error condition */
1577 printf("getnewbuf: No useful buffers");
1579 /* wait for a free buffer of any kind */
1581 bufstats
.bufs_sleeps
++;
1582 tsleep(&needbuffer
, slpflag
|(PRIBIO
+1), "getnewbuf", slptimeo
);
1587 /* Buffer available either on AGE or LRU or META */
1591 /* Buffer available either on AGE or LRU */
1595 } else if (!lru_bp
) {
1598 } else { /* buffer available on both AGE and LRU */
1599 age_time
= time
.tv_sec
- age_bp
->b_timestamp
;
1600 lru_time
= time
.tv_sec
- lru_bp
->b_timestamp
;
1601 if ((age_time
< 0) || (lru_time
< 0)) { /* time set backwards */
1605 * we should probably re-timestamp eveything in the
1606 * queues at this point with the current time
1609 if ((lru_time
>= lru_is_stale
) && (age_time
< age_is_stale
)) {
1619 if (!bp
) { /* Neither on AGE nor on LRU */
1622 } else if (meta_bp
) {
1623 bp_time
= time
.tv_sec
- bp
->b_timestamp
;
1624 meta_time
= time
.tv_sec
- meta_bp
->b_timestamp
;
1626 if (!(bp_time
< 0) && !(meta_time
< 0)) {
1627 /* time not set backwards */
1629 bp_is_stale
= (*queue
== BQ_LRU
) ?
1630 lru_is_stale
: age_is_stale
;
1632 if ((meta_time
>= meta_is_stale
) &&
1633 (bp_time
< bp_is_stale
)) {
1641 panic("getnewbuf: null bp");
1644 if (ISSET(bp
->b_flags
, B_LOCKED
)) {
1645 panic("getnewbuf: bp @ 0x%x is LOCKED! (flags 0x%x)\n", bp
, bp
->b_flags
);
1648 if (bp
->b_hash
.le_prev
== (struct buf
**)0xdeadbeef)
1649 panic("getnewbuf: le_prev is deadbeef, buf @ 0x%x", bp
);
1651 if(ISSET(bp
->b_flags
, B_BUSY
))
1652 panic("getnewbuf reusing BUSY buf @ 0x%x", bp
);
1655 if (bcleanbuf(bp
)) {
1656 /* bawrite() issued, buffer not ready */
1665 #include <mach/mach_types.h>
1666 #include <mach/memory_object_types.h>
1667 #include <kern/sched_prim.h>
1671 * Returns 0 is buffer is ready to use,
1672 * Returns 1 if issued a bawrite() to indicate
1673 * that the buffer is not ready.
1676 bcleanbuf(struct buf
*bp
)
1684 /* Remove from the queue */
1687 /* Buffer is no longer on free lists. */
1688 SET(bp
->b_flags
, B_BUSY
);
1690 /* Check whether the buffer header was "allocated" */
1691 if (ISSET(bp
->b_flags
, B_HDRALLOC
))
1694 if (bp
->b_hash
.le_prev
== (struct buf
**)0xdeadbeef)
1695 panic("bcleanbuf: le_prev is deadbeef");
1698 * If buffer was a delayed write, start the IO by queuing
1699 * it on the LAUNDRY queue, and return 1
1701 if (ISSET(bp
->b_flags
, B_DELWRI
)) {
1703 binstailfree(bp
, &bufqueues
[BQ_LAUNDRY
], BQ_LAUNDRY
);
1705 wakeup(&blaundrycnt
);
1706 /* and give it a chance to run */
1707 (void)thread_block(THREAD_CONTINUE_NULL
);
1718 if (ISSET(bp
->b_flags
, B_META
)) {
1719 vm_offset_t elem
= (vm_offset_t
)bp
->b_data
;
1721 panic("bcleanbuf: NULL bp->b_data B_META buffer");
1723 if (ISSET(bp
->b_flags
, B_ZALLOC
)) {
1724 if (bp
->b_bufsize
<= MAXMETA
) {
1727 z
= getbufzone(bp
->b_bufsize
);
1728 bp
->b_data
= (caddr_t
)0xdeadbeef;
1730 CLR(bp
->b_flags
, B_ZALLOC
);
1732 panic("bcleanbuf: B_ZALLOC set incorrectly");
1734 bp
->b_data
= (caddr_t
)0xdeadbeef;
1735 kmem_free(kernel_map
, elem
, bp
->b_bufsize
);
1739 trace(TR_BRELSE
, pack(bp
->b_vp
, bp
->b_bufsize
), bp
->b_lblkno
);
1741 /* disassociate us from our vnode, if we had one... */
1744 /* clear out various other fields */
1747 bp
->b_flags
= B_BUSY
;
1749 SET(bp
->b_flags
, B_HDRALLOC
);
1751 bp
->b_blkno
= bp
->b_lblkno
= 0;
1756 bp
->b_dirtyoff
= bp
->b_dirtyend
= 0;
1757 bp
->b_validoff
= bp
->b_validend
= 0;
1759 /* nuke any credentials we were holding */
1761 if (cred
!= NOCRED
) {
1762 bp
->b_rcred
= NOCRED
;
1766 if (cred
!= NOCRED
) {
1767 bp
->b_wcred
= NOCRED
;
1776 * Wait for operations on the buffer to complete.
1777 * When they do, extract and return the I/O's error value.
1786 while (!ISSET(bp
->b_flags
, B_DONE
))
1787 tsleep(bp
, PRIBIO
+ 1, "biowait", 0);
1790 /* check for interruption of I/O (e.g. via NFS), then errors. */
1791 if (ISSET(bp
->b_flags
, B_EINTR
)) {
1792 CLR(bp
->b_flags
, B_EINTR
);
1794 } else if (ISSET(bp
->b_flags
, B_ERROR
))
1795 return (bp
->b_error
? bp
->b_error
: EIO
);
1801 * Mark I/O complete on a buffer.
1803 * If a callback has been requested, e.g. the pageout
1804 * daemon, do so. Otherwise, awaken waiting processes.
1806 * [ Leffler, et al., says on p.247:
1807 * "This routine wakes up the blocked process, frees the buffer
1808 * for an asynchronous write, or, for a request by the pagedaemon
1809 * process, invokes a procedure specified in the buffer structure" ]
1811 * In real life, the pagedaemon (or other system processes) wants
1812 * to do async stuff to, and doesn't want the buffer brelse()'d.
1813 * (for swap pager, that puts swap buffers on the free lists (!!!),
1814 * for the vn device, that puts malloc'd buffers on the free lists!)
1820 boolean_t funnel_state
;
1823 funnel_state
= thread_funnel_set(kernel_flock
, TRUE
);
1825 KERNEL_DEBUG((FSDBG_CODE(DBG_FSRW
, 387)) | DBG_FUNC_START
,
1826 (int)bp
, (int)bp
->b_data
, bp
->b_flags
, 0, 0);
1828 if (ISSET(bp
->b_flags
, B_DONE
))
1829 panic("biodone already");
1830 SET(bp
->b_flags
, B_DONE
); /* note that it's done */
1832 * I/O was done, so don't believe
1833 * the DIRTY state from VM anymore
1835 CLR(bp
->b_flags
, B_WASDIRTY
);
1837 if (!ISSET(bp
->b_flags
, B_READ
) && !ISSET(bp
->b_flags
, B_RAW
))
1838 vwakeup(bp
); /* wake up reader */
1840 if (kdebug_enable
) {
1841 int code
= DKIO_DONE
;
1843 if (bp
->b_flags
& B_READ
)
1845 if (bp
->b_flags
& B_ASYNC
)
1848 if (bp
->b_flags
& B_META
)
1850 else if (bp
->b_flags
& (B_PGIN
| B_PAGEOUT
))
1851 code
|= DKIO_PAGING
;
1853 KERNEL_DEBUG_CONSTANT(FSDBG_CODE(DBG_DKRW
, code
) | DBG_FUNC_NONE
,
1854 bp
, bp
->b_vp
, bp
->b_resid
, bp
->b_error
, 0);
1857 /* Wakeup the throttled write operations as needed */
1860 && (vp
->v_flag
& VTHROTTLED
)
1861 && (vp
->v_numoutput
<= (BUFWRITE_THROTTLE
/ 3))) {
1862 vp
->v_flag
&= ~VTHROTTLED
;
1863 wakeup((caddr_t
)&vp
->v_numoutput
);
1866 if (ISSET(bp
->b_flags
, B_CALL
)) { /* if necessary, call out */
1867 void (*iodone_func
)(struct buf
*) = bp
->b_iodone
;
1869 CLR(bp
->b_flags
, B_CALL
); /* but note callout done */
1870 bp
->b_iodone
= NULL
;
1872 if (iodone_func
== NULL
) {
1873 panic("biodone: bp @ 0x%x has NULL b_iodone!\n", bp
);
1877 } else if (ISSET(bp
->b_flags
, B_ASYNC
)) /* if async, release it */
1879 else { /* or just wakeup the buffer */
1880 CLR(bp
->b_flags
, B_WANTED
);
1884 KERNEL_DEBUG((FSDBG_CODE(DBG_FSRW
, 387)) | DBG_FUNC_END
,
1885 (int)bp
, (int)bp
->b_data
, bp
->b_flags
, 0, 0);
1887 thread_funnel_set(kernel_flock
, funnel_state
);
1891 * Return a count of buffers on the "locked" queue.
1896 register struct buf
*bp
;
1899 for (bp
= bufqueues
[BQ_LOCKED
].tqh_first
; bp
;
1900 bp
= bp
->b_freelist
.tqe_next
)
1906 * Return a count of 'busy' buffers. Used at the time of shutdown.
1909 count_busy_buffers()
1911 register struct buf
*bp
;
1912 register int nbusy
= 0;
1914 for (bp
= &buf
[nbuf
]; --bp
>= buf
; )
1915 if ((bp
->b_flags
& (B_BUSY
|B_INVAL
)) == B_BUSY
)
1922 * Print out statistics on the current allocation of the buffer pool.
1923 * Can be enabled to print out on every ``sync'' by setting "syncprt"
1924 * in vfs_syscalls.c using sysctl.
1930 register struct buf
*bp
;
1931 register struct bqueues
*dp
;
1932 int counts
[MAXBSIZE
/CLBYTES
+1];
1933 static char *bname
[BQUEUES
] =
1934 { "LOCKED", "LRU", "AGE", "EMPTY", "META", "LAUNDRY" };
1936 for (dp
= bufqueues
, i
= 0; dp
< &bufqueues
[BQUEUES
]; dp
++, i
++) {
1938 for (j
= 0; j
<= MAXBSIZE
/CLBYTES
; j
++)
1941 for (bp
= dp
->tqh_first
; bp
; bp
= bp
->b_freelist
.tqe_next
) {
1942 counts
[bp
->b_bufsize
/CLBYTES
]++;
1946 printf("%s: total-%d", bname
[i
], count
);
1947 for (j
= 0; j
<= MAXBSIZE
/CLBYTES
; j
++)
1949 printf(", %d-%d", j
* CLBYTES
, counts
[j
]);
1953 #endif /* DIAGNOSTIC */
1955 #define NRESERVEDIOBUFS 64
1957 __private_extern__
struct buf
*
1958 alloc_io_buf(vp
, priv
)
1962 register struct buf
*bp
;
1967 while (niobuf
- NRESERVEDIOBUFS
< bufstats
.bufs_iobufinuse
&& !priv
) {
1969 bufstats
.bufs_iobufsleeps
++;
1970 (void) tsleep(&need_iobuffer
, (PRIBIO
+1), "alloc_io_buf", 0);
1973 while ((bp
= iobufqueue
.tqh_first
) == NULL
) {
1975 bufstats
.bufs_iobufsleeps
++;
1976 (void) tsleep(&need_iobuffer
, (PRIBIO
+1), "alloc_io_buf1", 0);
1979 TAILQ_REMOVE(&iobufqueue
, bp
, b_freelist
);
1980 bp
->b_timestamp
= 0;
1982 /* clear out various fields */
1983 bp
->b_flags
= B_BUSY
;
1984 bp
->b_blkno
= bp
->b_lblkno
= 0;
1993 if (vp
->v_type
== VBLK
|| vp
->v_type
== VCHR
)
1994 bp
->b_dev
= vp
->v_rdev
;
1997 bufstats
.bufs_iobufinuse
++;
1998 if (bufstats
.bufs_iobufinuse
> bufstats
.bufs_iobufmax
)
1999 bufstats
.bufs_iobufmax
= bufstats
.bufs_iobufinuse
;
2005 __private_extern__
void
2012 /* put buffer back on the head of the iobufqueue */
2014 bp
->b_flags
= B_INVAL
;
2016 binsheadfree(bp
, &iobufqueue
, -1);
2018 /* Wake up any processes waiting for any buffer to become free. */
2019 if (need_iobuffer
) {
2021 wakeup(&need_iobuffer
);
2023 bufstats
.bufs_iobufinuse
--;
2027 /* disabled for now */
2029 /* XXX move this to a separate file */
2031 * Dynamic Scaling of the Buffer Queues
2034 typedef long long blsize_t
;
2036 blsize_t MAXNBUF
; /* initialize to (sane_size / PAGE_SIZE) */
2037 /* Global tunable limits */
2038 blsize_t nbufh
; /* number of buffer headers */
2039 blsize_t nbuflow
; /* minimum number of buffer headers required */
2040 blsize_t nbufhigh
; /* maximum number of buffer headers allowed */
2041 blsize_t nbuftarget
; /* preferred number of buffer headers */
2046 * 1. 0 < nbuflow <= nbufh <= nbufhigh
2047 * 2. nbufhigh <= MAXNBUF
2048 * 3. 0 < nbuflow <= nbuftarget <= nbufhigh
2049 * 4. nbufh can not be set by sysctl().
2052 /* Per queue tunable limits */
2055 blsize_t bl_nlow
; /* minimum number of buffer headers required */
2056 blsize_t bl_num
; /* number of buffer headers on the queue */
2057 blsize_t bl_nlhigh
; /* maximum number of buffer headers allowed */
2058 blsize_t bl_target
; /* preferred number of buffer headers */
2059 long bl_stale
; /* Seconds after which a buffer is considered stale */
2065 * 1. 0 <= bl_nlow <= bl_num <= bl_nlhigh
2066 * 2. bl_nlhigh <= MAXNBUF
2067 * 3. bufqlim[BQ_META].bl_nlow != 0
2068 * 4. bufqlim[BQ_META].bl_nlow > (number of possible concurrent
2069 * file system IO operations)
2070 * 5. bl_num can not be set by sysctl().
2071 * 6. bl_nhigh <= nbufhigh
2077 * Defining it blsize_t as long permits 2^31 buffer headers per queue.
2078 * Which can describe (2^31 * PAGE_SIZE) memory per queue.
2080 * These limits are exported to by means of sysctl().
2081 * It was decided to define blsize_t as a 64 bit quantity.
2082 * This will make sure that we will not be required to change it
2083 * as long as we do not exceed 64 bit address space for the kernel.
2085 * low and high numbers parameters initialized at compile time
2086 * and boot arguments can be used to override them. sysctl()
2087 * would not change the value. sysctl() can get all the values
2088 * but can set only target. num is the current level.
2090 * Advantages of having a "bufqscan" thread doing the balancing are,
2091 * Keep enough bufs on BQ_EMPTY.
2092 * getnewbuf() by default will always select a buffer from the BQ_EMPTY.
2093 * getnewbuf() perfoms best if a buffer was found there.
2094 * Also this minimizes the possibility of starting IO
2095 * from getnewbuf(). That's a performance win, too.
2097 * Localize complex logic [balancing as well as time aging]
2100 * Simplify getnewbuf() logic by elimination of time aging code.
2106 * The goal of the dynamic scaling of the buffer queues to to keep
2107 * the size of the LRU close to bl_target. Buffers on a queue would
2110 * There would be a thread which will be responsible for "balancing"
2111 * the buffer cache queues.
2113 * The scan order would be: AGE, LRU, META, EMPTY.
2116 long bufqscanwait
= 0;
2118 static void bufqscan_thread();
2119 static int balancebufq(int q
);
2120 static int btrimempty(int n
);
2121 static __inline__
int initbufqscan(void);
2122 static __inline__
int nextbufq(int q
);
2123 static void buqlimprt(int all
);
2126 bufq_balance_thread_init()
2129 if (bufqscanwait
++ == 0) {
2131 /* Initalize globals */
2132 MAXNBUF
= (sane_size
/ PAGE_SIZE
);
2134 nbuflow
= min(nbufh
, 100);
2135 nbufhigh
= min(MAXNBUF
, max(nbufh
, 2048));
2136 nbuftarget
= (sane_size
>> 5) / PAGE_SIZE
;
2137 nbuftarget
= max(nbuflow
, nbuftarget
);
2138 nbuftarget
= min(nbufhigh
, nbuftarget
);
2141 * Initialize the bufqlim
2145 bufqlim
[BQ_LOCKED
].bl_nlow
= 0;
2146 bufqlim
[BQ_LOCKED
].bl_nlhigh
= 32;
2147 bufqlim
[BQ_LOCKED
].bl_target
= 0;
2148 bufqlim
[BQ_LOCKED
].bl_stale
= 30;
2151 bufqlim
[BQ_LRU
].bl_nlow
= 0;
2152 bufqlim
[BQ_LRU
].bl_nlhigh
= nbufhigh
/4;
2153 bufqlim
[BQ_LRU
].bl_target
= nbuftarget
/4;
2154 bufqlim
[BQ_LRU
].bl_stale
= LRU_IS_STALE
;
2157 bufqlim
[BQ_AGE
].bl_nlow
= 0;
2158 bufqlim
[BQ_AGE
].bl_nlhigh
= nbufhigh
/4;
2159 bufqlim
[BQ_AGE
].bl_target
= nbuftarget
/4;
2160 bufqlim
[BQ_AGE
].bl_stale
= AGE_IS_STALE
;
2163 bufqlim
[BQ_EMPTY
].bl_nlow
= 0;
2164 bufqlim
[BQ_EMPTY
].bl_nlhigh
= nbufhigh
/4;
2165 bufqlim
[BQ_EMPTY
].bl_target
= nbuftarget
/4;
2166 bufqlim
[BQ_EMPTY
].bl_stale
= 600000;
2169 bufqlim
[BQ_META
].bl_nlow
= 0;
2170 bufqlim
[BQ_META
].bl_nlhigh
= nbufhigh
/4;
2171 bufqlim
[BQ_META
].bl_target
= nbuftarget
/4;
2172 bufqlim
[BQ_META
].bl_stale
= META_IS_STALE
;
2175 bufqlim
[BQ_LOCKED
].bl_nlow
= 0;
2176 bufqlim
[BQ_LOCKED
].bl_nlhigh
= 32;
2177 bufqlim
[BQ_LOCKED
].bl_target
= 0;
2178 bufqlim
[BQ_LOCKED
].bl_stale
= 30;
2183 /* create worker thread */
2184 kernel_thread(kernel_task
, bufqscan_thread
);
2187 /* The workloop for the buffer balancing thread */
2191 boolean_t funnel_state
;
2194 funnel_state
= thread_funnel_set(kernel_flock
, TRUE
);
2198 int q
; /* buffer queue to process */
2202 moretodo
|= balancebufq(q
);
2211 (void)tsleep((void *)&bufqscanwait
, PRIBIO
, "bufqscanwait", 60 * hz
);
2215 (void) thread_funnel_set(kernel_flock
, FALSE
);
2218 /* Seed for the buffer queue balancing */
2219 static __inline__
int
2222 /* Start with AGE queue */
2226 /* Pick next buffer queue to balance */
2227 static __inline__
int
2230 int order
[] = { BQ_AGE
, BQ_LRU
, BQ_META
, BQ_EMPTY
, 0 };
2237 /* function to balance the buffer queues */
2245 /* reject invalid q */
2246 if ((q
< 0) || (q
>= BQUEUES
))
2249 /* LOCKED or LAUNDRY queue MUST not be balanced */
2250 if ((q
== BQ_LOCKED
) || (q
== BQ_LAUNDRY
))
2253 n
= (bufqlim
[q
].bl_num
- bufqlim
[q
].bl_target
);
2255 /* If queue has less than target nothing more to do */
2260 /* Balance only a small amount (12.5%) at a time */
2264 /* EMPTY queue needs special handling */
2265 if (q
== BQ_EMPTY
) {
2266 moretodo
|= btrimempty(n
);
2270 for (; n
> 0; n
--) {
2271 struct buf
*bp
= bufqueues
[q
].tqh_first
;
2275 /* check if it's stale */
2276 if ((time
.tv_sec
- bp
->b_timestamp
) > bufqlim
[q
].bl_stale
) {
2277 if (bcleanbuf(bp
)) {
2278 /* bawrite() issued, bp not ready */
2281 /* release the cleaned buffer to BQ_EMPTY */
2282 SET(bp
->b_flags
, B_INVAL
);
2298 * When struct buf are allocated dynamically, this would
2299 * reclaim upto 'n' struct buf from the empty queue.
2305 static __inline__
void
2308 if ((q
< 0) || (q
>= BQUEUES
))
2311 bufqlim
[q
].bl_num
++;
2315 static __inline__
void
2318 if ((q
< 0) || (q
>= BQUEUES
))
2321 bufqlim
[q
].bl_num
--;
2329 static char *bname
[BQUEUES
] =
2330 { "LOCKED", "LRU", "AGE", "EMPTY", "META", "LAUNDRY" };
2333 for (i
= 0; i
< BQUEUES
; i
++) {
2334 printf("%s : ", bname
[i
]);
2335 printf("min = %ld, ", (long)bufqlim
[i
].bl_nlow
);
2336 printf("cur = %ld, ", (long)bufqlim
[i
].bl_num
);
2337 printf("max = %ld, ", (long)bufqlim
[i
].bl_nlhigh
);
2338 printf("target = %ld, ", (long)bufqlim
[i
].bl_target
);
2339 printf("stale after %ld seconds\n", bufqlim
[i
].bl_stale
);
2342 for (i
= 0; i
< BQUEUES
; i
++) {
2343 printf("%s : ", bname
[i
]);
2344 printf("cur = %ld, ", (long)bufqlim
[i
].bl_num
);
2349 * If the getnewbuf() calls bcleanbuf() on the same thread
2350 * there is a potential for stack overrun and deadlocks.
2351 * So we always handoff the work to worker thread for completion
2355 bcleanbuf_thread_init()
2357 static void bcleanbuf_thread();
2359 /* create worker thread */
2360 kernel_thread(kernel_task
, bcleanbuf_thread
);
2366 boolean_t funnel_state
;
2371 funnel_state
= thread_funnel_set(kernel_flock
, TRUE
);
2374 while (blaundrycnt
== 0)
2375 (void)tsleep((void *)&blaundrycnt
, PRIBIO
, "blaundry", 60 * hz
);
2376 bp
= TAILQ_FIRST(&bufqueues
[BQ_LAUNDRY
]);
2377 /* Remove from the queue */
2381 error
= bawrite_internal(bp
, 0);
2383 binstailfree(bp
, &bufqueues
[BQ_LAUNDRY
], BQ_LAUNDRY
);
2386 (void)tsleep((void *)&blaundrycnt
, PRIBIO
, "blaundry", 1);
2389 (void)thread_block(THREAD_CONTINUE_NULL
);
2396 (void) thread_funnel_set(kernel_flock
, funnel_state
);
2401 bp_cmp(void *a
, void *b
)
2403 struct buf
*bp_a
= *(struct buf
**)a
,
2404 *bp_b
= *(struct buf
**)b
;
2407 // don't have to worry about negative block
2408 // numbers so this is ok to do.
2410 res
= (bp_a
->b_blkno
- bp_b
->b_blkno
);
2418 bflushq(int whichq
, struct mount
*mp
)
2420 struct buf
*bp
, *next
;
2421 int i
, buf_count
, s
;
2422 int counter
=0, total_writes
=0;
2423 static struct buf
*flush_table
[NFLUSH
];
2425 if (whichq
< 0 || whichq
>= BQUEUES
) {
2431 bp
= TAILQ_FIRST(&bufqueues
[whichq
]);
2432 for(buf_count
=0; bp
; bp
=next
) {
2433 next
= bp
->b_freelist
.tqe_next
;
2435 if (bp
->b_vp
== NULL
|| bp
->b_vp
->v_mount
!= mp
) {
2439 if ((bp
->b_flags
& B_DELWRI
) && (bp
->b_flags
& B_BUSY
) == 0) {
2440 if (whichq
!= BQ_LOCKED
&& (bp
->b_flags
& B_LOCKED
)) {
2441 panic("bflushq: bp @ 0x%x is locked!\n", bp
);
2445 bp
->b_flags
|= B_BUSY
;
2446 flush_table
[buf_count
] = bp
;
2450 if (buf_count
>= NFLUSH
) {
2451 qsort(flush_table
, buf_count
, sizeof(struct buf
*), bp_cmp
);
2453 for(i
=0; i
< buf_count
; i
++) {
2454 bawrite(flush_table
[i
]);
2462 if (buf_count
> 0) {
2463 qsort(flush_table
, buf_count
, sizeof(struct buf
*), bp_cmp
);
2464 for(i
=0; i
< buf_count
; i
++) {
2465 bawrite(flush_table
[i
]);
2469 return total_writes
;