nrelease - fix/improve livecd
[dragonfly.git] / sys / sys / buf.h
CommitLineData
984263bc
MD
1/*
2 * Copyright (c) 1982, 1986, 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.
2c64e990 18 * 3. Neither the name of the University nor the names of its contributors
984263bc
MD
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 * @(#)buf.h 8.9 (Berkeley) 3/30/95
35 * $FreeBSD: src/sys/sys/buf.h,v 1.88.2.10 2003/01/25 19:02:23 dillon Exp $
a9bf1b8c 36 * $DragonFly: src/sys/sys/buf.h,v 1.54 2008/08/29 20:08:37 dillon Exp $
984263bc
MD
37 */
38
39#ifndef _SYS_BUF_H_
40#define _SYS_BUF_H_
41
03d6a592
MD
42#if defined(_KERNEL) || defined(_KERNEL_STRUCTURES)
43
335dda38 44#ifndef _SYS_QUEUE_H_
984263bc 45#include <sys/queue.h>
335dda38
MD
46#endif
47#ifndef _SYS_LOCK_H_
984263bc 48#include <sys/lock.h>
335dda38
MD
49#endif
50#ifndef _SYS_DEVICE_H_
51#include <sys/device.h>
52#endif
984263bc 53
54f51aeb
HP
54#ifndef _SYS_XIO_H_
55#include <sys/xio.h>
56#endif
6bae6177
MD
57#ifndef _SYS_TREE_H_
58#include <sys/tree.h>
59#endif
1eabbf32
HP
60#ifndef _SYS_BIO_H_
61#include <sys/bio.h>
62#endif
16523a43
MD
63#ifndef _SYS_SPINLOCK_H_
64#include <sys/spinlock.h>
65#endif
1eabbf32 66
984263bc 67struct buf;
81b5c339 68struct bio;
984263bc
MD
69struct mount;
70struct vnode;
54f51aeb 71struct xio;
984263bc 72
8c72e3d5 73#define NBUF_BIO 6
81b5c339 74
6bae6177 75struct buf_rb_tree;
1f1ea522 76struct buf_rb_hash;
e656fe10
MD
77RB_PROTOTYPE2(buf_rb_tree, buf, b_rbnode, rb_buf_compare, off_t);
78RB_PROTOTYPE2(buf_rb_hash, buf, b_rbhash, rb_buf_compare, off_t);
6bae6177 79
984263bc
MD
80/*
81 * To avoid including <ufs/ffs/softdep.h>
82 */
83LIST_HEAD(workhead, worklist);
984263bc 84
e92ca23a
MD
85#endif
86
10f3fee5
MD
87typedef enum buf_cmd {
88 BUF_CMD_DONE = 0,
89 BUF_CMD_READ,
90 BUF_CMD_WRITE,
91 BUF_CMD_FREEBLKS,
a9bf1b8c
MD
92 BUF_CMD_FORMAT,
93 BUF_CMD_FLUSH
10f3fee5
MD
94} buf_cmd_t;
95
e92ca23a
MD
96#if defined(_KERNEL) || defined(_KERNEL_STRUCTURES)
97
984263bc
MD
98/*
99 * The buffer header describes an I/O operation in the kernel.
100 *
101 * NOTES:
9a71d53f
MD
102 * b_bufsize represents the filesystem block size (for this particular
103 * block) and/or the allocation size or original request size. This
104 * field is NOT USED by lower device layers. VNode and device
105 * strategy routines WILL NEVER ACCESS THIS FIELD.
984263bc 106 *
4414f2c9
MD
107 * b_bcount represents the I/O request size. Unless B_NOBCLIP is set,
108 * the device chain is allowed to clip b_bcount to accomodate the device
109 * EOF. Note that this is different from the byte oriented file EOF.
110 * If B_NOBCLIP is set, the device chain is required to generate an
111 * error if it would othrewise have to clip the request. Buffers
112 * obtained via getblk() automatically set B_NOBCLIP. It is important
113 * to note that EOF clipping via b_bcount is different from EOF clipping
114 * via returning a b_actual < b_bcount. B_NOBCLIP only effects block
115 * oriented EOF clipping (b_bcount modifications).
984263bc 116 *
4414f2c9
MD
117 * b_actual represents the number of bytes of I/O that actually occured,
118 * whether an error occured or not. b_actual must be initialized to 0
119 * prior to initiating I/O as the device drivers will assume it to
120 * start at 0.
9a71d53f
MD
121 *
122 * b_dirtyoff, b_dirtyend. Buffers support piecemeal, unaligned
123 * ranges of dirty data that need to be written to backing store.
124 * The range is typically clipped at b_bcount (not b_bufsize).
81b5c339
MD
125 *
126 * b_bio1 and b_bio2 represent the two primary I/O layers. Additional
127 * I/O layers are allocated out of the object cache and may also exist.
128 *
129 * b_bio1 is the logical layer and contains offset or block number
130 * data for the primary vnode, b_vp. I/O operations are almost
131 * universally initiated from the logical layer, so you will often
132 * see things like: vn_strategy(bp->b_vp, &bp->b_bio1).
133 *
134 * b_bio2 is the first physical layer (typically the slice-relative
135 * layer) and contains the translated offset or block number for
136 * the block device underlying a filesystem. Filesystems such as UFS
137 * will maintain cached translations and you may see them initiate
138 * a 'physical' I/O using vn_strategy(devvp, &bp->b_bio2). BUT,
139 * remember that the layering is relative to bp->b_vp, so the
140 * device-relative block numbers for buffer cache operations that occur
141 * directly on a block device will be in the first BIO layer.
142 *
408357d8
MD
143 * b_ops - initialized if a buffer has a bio_ops
144 *
81b5c339
MD
145 * NOTE!!! Only the BIO subsystem accesses b_bio1 and b_bio2 directly.
146 * ALL STRATEGY LAYERS FOR BOTH VNODES AND DEVICES ONLY ACCESS THE BIO
147 * PASSED TO THEM, AND WILL PUSH ANOTHER BIO LAYER IF FORWARDING THE
148 * I/O DEEPER. In particular, a vn_strategy() or dev_dstrategy()
149 * call should not ever access buf->b_vp as this vnode may be totally
150 * unrelated to the vnode/device whos strategy routine was called.
984263bc
MD
151 */
152struct buf {
1f1ea522
MD
153 RB_ENTRY(buf) b_rbnode; /* RB node in vnode clean/dirty tree */
154 RB_ENTRY(buf) b_rbhash; /* RB node in vnode hash tree */
984263bc 155 TAILQ_ENTRY(buf) b_freelist; /* Free list position if not active. */
81b5c339 156 struct buf *b_cluster_next; /* Next buffer (cluster code) */
54078292 157 struct vnode *b_vp; /* (vp, loffset) index */
81b5c339 158 struct bio b_bio_array[NBUF_BIO]; /* BIO translation layers */
54078292 159 u_int32_t b_flags; /* B_* flags. */
e11efbb3
MD
160 unsigned int b_qindex; /* buffer queue index */
161 unsigned int b_qcpu; /* buffer queue cpu */
0e8bd897 162 unsigned char b_act_count; /* similar to vm_page act_count */
2f0acc22 163 unsigned char b_swindex;
d32579c3 164 cpumask_t b_cpumask; /* KVABIO API */
984263bc 165 struct lock b_lock; /* Buffer lock */
10f3fee5 166 buf_cmd_t b_cmd; /* I/O command */
54078292
MD
167 int b_bufsize; /* Allocated buffer size. */
168 int b_runningbufspace; /* when I/O is running, pipelining */
169 int b_bcount; /* Valid bytes in buffer. */
170 int b_resid; /* Remaining I/O */
81b5c339 171 int b_error; /* Error return */
984263bc
MD
172 caddr_t b_data; /* Memory, superblocks, indirect etc. */
173 caddr_t b_kvabase; /* base kva for buffer */
174 int b_kvasize; /* size of kva for buffer */
984263bc
MD
175 int b_dirtyoff; /* Offset in buffer of dirty region. */
176 int b_dirtyend; /* Offset of end of dirty region. */
283b9448 177 int b_refs; /* FINDBLK_REF/bqhold()/bqdrop() */
81b5c339 178 struct xio b_xio; /* data buffer page list management */
408357d8 179 struct bio_ops *b_ops; /* bio_ops used w/ b_dep */
3dd1f60c
TK
180 union {
181 struct workhead b_dep; /* List of filesystem dependencies. */
182 void *b_priv; /* Filesystem private data */
183 };
984263bc
MD
184};
185
81b5c339
MD
186/*
187 * XXX temporary
188 */
189#define b_bio1 b_bio_array[0] /* logical layer */
190#define b_bio2 b_bio_array[1] /* (typically) the disk layer */
191#define b_loffset b_bio1.bio_offset
984263bc 192
4b958e7b
MD
193
194/*
195 * Flags passed to getblk()
196 *
197 * GETBLK_PCATCH - Allow signals to be caught. getblk() is allowed to return
198 * NULL if this flag is passed.
199 *
200 * GETBLK_BHEAVY - This is a heavy weight buffer, meaning that resolving
201 * writes can require additional buffers.
b77cfc40
MD
202 *
203 * GETBLK_SZMATCH- blksize must match pre-existing b_bcount. getblk() can
204 * return NULL.
205 *
206 * GETBLK_NOWAIT - Do not use a blocking lock. getblk() can return NULL.
4b958e7b
MD
207 */
208#define GETBLK_PCATCH 0x0001 /* catch signals */
209#define GETBLK_BHEAVY 0x0002 /* heavy weight buffer */
b77cfc40
MD
210#define GETBLK_SZMATCH 0x0004 /* pre-existing buffer must match */
211#define GETBLK_NOWAIT 0x0008 /* non-blocking */
d32579c3 212#define GETBLK_KVABIO 0x0010 /* request a B_KVABIO buffer */
4b958e7b 213
d32579c3
MD
214#define FINDBLK_TEST 0x0020 /* test only, do not lock */
215#define FINDBLK_NBLOCK 0x0040 /* use non-blocking lock, can return NULL */
216#define FINDBLK_REF 0x0080 /* ref the buf to prevent reuse */
217#define FINDBLK_KVABIO 0x0100 /* (if locking only) request B_KVABIO buffer */
b1c20cfa 218
984263bc
MD
219/*
220 * These flags are kept in b_flags.
221 *
222 * Notes:
223 *
984263bc
MD
224 * B_PAGING Indicates that bp is being used by the paging system or
225 * some paging system and that the bp is not linked into
226 * the b_vp's clean/dirty linked lists or ref counts.
227 * Buffer vp reassignments are illegal in this case.
228 *
229 * B_CACHE This may only be set if the buffer is entirely valid.
230 * The situation where B_DELWRI is set and B_CACHE is
231 * clear MUST be committed to disk by getblk() so
232 * B_DELWRI can also be cleared. See the comments for
233 * getblk() in kern/vfs_bio.c. If B_CACHE is clear,
234 * the caller is expected to clear B_ERROR|B_INVAL,
10f3fee5 235 * set BUF_CMD_READ, and initiate an I/O.
984263bc
MD
236 *
237 * The 'entire buffer' is defined to be the range from
238 * 0 through b_bcount.
239 *
984263bc
MD
240 * B_CLUSTEROK This flag is typically set for B_DELWRI buffers
241 * by filesystems that allow clustering when the buffer
242 * is fully dirty and indicates that it may be clustered
243 * with other adjacent dirty buffers. Note the clustering
244 * may not be used with the stage 1 data write under NFS
245 * but may be used for the commit rpc portion.
246 *
247 * B_VMIO Indicates that the buffer is tied into an VM object.
248 * The buffer's data is always PAGE_SIZE aligned even
249 * if b_bufsize and b_bcount are not. ( b_bufsize is
250 * always at least DEV_BSIZE aligned, though ).
251 *
252 * B_DIRECT Hint that we should attempt to completely free
253 * the pages underlying the buffer. B_DIRECT is
254 * sticky until the buffer is released and typically
255 * only has an effect when B_RELBUF is also set.
256 *
27bc0cb1
MD
257 * B_LOCKED The buffer will be released to the locked queue
258 * regardless of its current state. Note that
259 * if B_DELWRI is set, no I/O occurs until the caller
260 * acquires the buffer, clears B_LOCKED, then releases
261 * it again.
b86460bf
MD
262 *
263 * B_AGE When allocating a new buffer any buffer encountered
264 * with B_AGE set will be reallocated more quickly then
265 * buffers encountered without it set. B_AGE is set
266 * as part of the loop so idle buffers should eventually
267 * wind up with B_AGE set. B_AGE explicitly does NOT
268 * cause the buffer to be instantly reallocated for
269 * other purposes.
270 *
271 * Standard buffer flushing routines leave B_AGE intact
272 * through the DIRTY queue and into the CLEAN queue.
273 * Setting B_AGE on a dirty buffer will not cause it
274 * to be flushed more quickly but will cause it to be
275 * reallocated more quickly after having been flushed.
e409de84
MD
276 *
277 * B_NOCACHE Request that the buffer and backing store be
278 * destroyed on completion. If B_DELWRI is set and the
279 * write fails, the buffer remains intact.
b8a41159
MD
280 *
281 * B_NOTMETA May be set on block device buffers representing
282 * file data (i.e. which aren't really meta-data),
283 * which will cause the buffer cache to set PG_NOTMETA
284 * in the VM pages when releasing them and the
285 * swapcache to not try to cache them.
a447ba19
MD
286 *
287 * B_MARKER Special marker buf, always skip.
d32579c3
MD
288 *
289 * B_KVABIO Owner of buffer (but not necessarily the underlying
290 * vnode or device) supports the KVABIO API. The owner
291 * of the buffer will only operate on the buffer's
292 * b_data via the API. Locked buffers only. This
293 * flag is cleared on brelse/bqrelse
6f5aaa27
MD
294 *
295 * WARNING! bp->b_data is not necessarily synchronized to the current cpu
296 * when B_KVABIO operations is specified. Callers using bp->b_data
297 * who specify B_KVABIO operation must call bkvasync() if they use
298 * bp->b_data directly, or whenever they pass a buffer between cpus
299 * (between threads, e.g. from helper threads) if the target thread
300 * intends to access bp->b_data.
984263bc
MD
301 */
302
b86460bf 303#define B_AGE 0x00000001 /* Reuse more quickly */
984263bc 304#define B_NEEDCOMMIT 0x00000002 /* Append-write in progress. */
b8a41159 305#define B_NOTMETA 0x00000004 /* This really isn't metadata */
984263bc 306#define B_DIRECT 0x00000008 /* direct I/O flag (pls free vmio) */
b86460bf 307#define B_DEFERRED 0x00000010 /* vfs-controlled deferment */
984263bc 308#define B_CACHE 0x00000020 /* Bread found us in the cache. */
1f1ea522 309#define B_HASHED 0x00000040 /* Indexed via v_rbhash_tree */
984263bc 310#define B_DELWRI 0x00000080 /* Delay I/O until buffer reused. */
4414f2c9 311#define B_BNOCLIP 0x00000100 /* EOF clipping b_bcount not allowed */
e158420c 312#define B_HASBOGUS 0x00000200 /* Contains bogus pages */
984263bc
MD
313#define B_EINTR 0x00000400 /* I/O was interrupted */
314#define B_ERROR 0x00000800 /* I/O error occurred. */
3b2afb67 315#define B_IOISSUED 0x00001000 /* Flag when I/O issued (vfs can clr) */
984263bc
MD
316#define B_INVAL 0x00002000 /* Does not contain valid info. */
317#define B_LOCKED 0x00004000 /* Locked in core (not reusable). */
135bd6a8 318#define B_NOCACHE 0x00008000 /* Destroy buffer AND backing store */
d32579c3 319#define B_KVABIO 0x00010000 /* Lockholder uses the KVABIO API */
984263bc 320#define B_CLUSTEROK 0x00020000 /* Pagein op, so swap() can count it. */
a447ba19 321#define B_MARKER 0x00040000 /* Special marker buf in queue */
984263bc 322#define B_RAW 0x00080000 /* Set by physio for raw transfers. */
4b958e7b 323#define B_HEAVY 0x00100000 /* Heavy-weight buffer */
984263bc
MD
324#define B_DIRTY 0x00200000 /* Needs writing later. */
325#define B_RELBUF 0x00400000 /* Release VMIO buffer. */
a06d536b 326#define B_FAILONDIS 0x00800000 /* Fail on disconnect */
9e45bec7
MD
327#define B_VNCLEAN 0x01000000 /* On vnode clean list */
328#define B_VNDIRTY 0x02000000 /* On vnode dirty list */
984263bc 329#define B_PAGING 0x04000000 /* volatile paging I/O -- bypass VMIO */
a5f04226 330#define B_TTC 0x08000000 /* Try to recycle pages to PQ_CACHE */
984263bc
MD
331#define B_RAM 0x10000000 /* Read ahead mark (flag) */
332#define B_VMIO 0x20000000 /* VMIO flag */
333#define B_CLUSTER 0x40000000 /* pagein op, so swap() can count it */
409cda56 334#define B_VFSFLAG1 0x80000000 /* VFSs can set this flag */
984263bc 335
9e45bec7 336#define PRINT_BUF_FLAGS "\20" \
f2d7fcf0 337 "\40unused31\37cluster\36vmio\35ram\34ordered" \
ae8e83e6 338 "\33paging\32vndirty\31vnclean\30unused23\27relbuf\26dirty" \
9e45bec7 339 "\25unused20\24raw\23unused18\22clusterok\21malloc\20nocache" \
1b30fbcc 340 "\17locked\16inval\15unused12\14error\13eintr\12unused9\11bnoclip" \
ae8e83e6 341 "\10delwri\7hashed\6cache\5deferred\4direct\3unused2\2needcommit\1age"
984263bc
MD
342
343#define NOOFFSET (-1LL) /* No buffer offset calculated yet */
344
345#ifdef _KERNEL
346/*
3020e3be 347 * Buffer locking. See sys/buf2.h for inline functions.
984263bc 348 */
984263bc
MD
349extern char *buf_wmesg; /* Default buffer lock message */
350#define BUF_WMESG "bufwait"
984263bc
MD
351
352#endif /* _KERNEL */
353
81b5c339
MD
354struct bio_queue_head {
355 TAILQ_HEAD(bio_queue, bio) queue;
30e5862e
MD
356 off_t off_unused;
357 int reorder;
358 struct bio *transition;
359 struct bio *bio_unused;
984263bc
MD
360};
361
362/*
54078292 363 * This structure describes a clustered I/O.
984263bc
MD
364 */
365struct cluster_save {
984263bc
MD
366 int bs_nchildren; /* Number of associated buffers. */
367 struct buf **bs_children; /* List of associated buffers. */
368};
369
984263bc
MD
370/*
371 * Zero out the buffer's data area.
372 */
d32579c3
MD
373#define clrbuf(bp) do { \
374 bkvasync((bp)); \
984263bc
MD
375 bzero((bp)->b_data, (u_int)(bp)->b_bcount); \
376 (bp)->b_resid = 0; \
d32579c3 377} while(0)
984263bc
MD
378
379/*
380 * Flags to low-level bitmap allocation routines (balloc).
381 *
382 * Note: sequential_heuristic() in kern/vfs_vnops.c limits the count
383 * to 127.
384 */
385#define B_SEQMASK 0x7F000000 /* Sequential heuristic mask. */
386#define B_SEQSHIFT 24 /* Sequential heuristic shift. */
387#define B_SEQMAX 0x7F
388#define B_CLRBUF 0x01 /* Cleared invalid areas of buffer. */
389#define B_SYNC 0x02 /* Do all allocations synchronously. */
390
d84f6fa1
MD
391/*
392 * Split nswbuf_kva by N, allowing each block device or mounted filesystem
393 * to use up to (nswbuf_kva / N) pbufs.
394 */
395#define NSWBUF_SPLIT 10 /* split nswbuf_kva by N */
396
984263bc 397#ifdef _KERNEL
74d62460 398extern long nbuf; /* The number of buffer headers */
79634a66
MD
399extern long maxswzone; /* Max KVA for swap structures */
400extern long maxbcache; /* Max KVA for buffer cache */
3583bbb4 401extern long hidirtybufspace;
984263bc 402extern int buf_maxio; /* nominal maximum I/O for buffer */
41cbf46c 403extern struct buf *buf; /* The buffer headers. */
984263bc
MD
404extern char *buffers; /* The buffer contents. */
405extern int bufpages; /* Number of memory pages in the buffer pool. */
2f0acc22
MD
406extern struct buf *swbuf_mem; /* Swap I/O buffer headers. */
407extern struct buf *swbuf_kva; /* Swap I/O buffer headers. */
408extern struct buf *swbuf_raw; /* Swap I/O buffer headers. */
409extern long nswbuf_mem; /* Number of swap I/O buffer headers. */
410extern long nswbuf_kva; /* Number of swap I/O buffer headers. */
411extern long nswbuf_raw; /* Number of swap I/O buffer headers. */
4afeea0d
MD
412extern int bioq_reorder_burst_interval;
413extern int bioq_reorder_burst_bytes;
414extern int bioq_reorder_minor_interval;
415extern int bioq_reorder_minor_bytes;
984263bc
MD
416
417struct uio;
3b48c3c1 418struct devstat;
984263bc 419
eafcc44d
MD
420long bd_heatup (void);
421void bd_wait (long count);
aa1bfd98 422void waitrunningbufspace(void);
b153f746 423int buf_dirty_count_severe (void);
4afeea0d 424int buf_runningbufspace_severe (void);
81b5c339 425void initbufbio(struct buf *);
b5d7061d 426void uninitbufbio(struct buf *);
81b5c339
MD
427void reinitbufbio(struct buf *);
428void clearbiocache(struct bio *);
b153f746 429void bremfree (struct buf *);
9c93755a
MD
430int breadx (struct vnode *, off_t, int, int, struct buf **);
431int breadnx (struct vnode *, off_t, int, int, off_t *, int *, int,
c1c3e862 432 struct buf **);
9c93755a 433void breadcb(struct vnode *, off_t, int, int,
c1c3e862 434 void (*)(struct bio *), void *);
b153f746
RG
435int bwrite (struct buf *);
436void bdwrite (struct buf *);
0a8aee15 437void buwrite (struct buf *);
b153f746
RG
438void bawrite (struct buf *);
439void bdirty (struct buf *);
4b958e7b 440void bheavy (struct buf *);
b153f746 441void bundirty (struct buf *);
b153f746
RG
442void brelse (struct buf *);
443void bqrelse (struct buf *);
9de13b88 444int cluster_awrite (struct buf *);
d32579c3
MD
445
446void bkvareset(struct buf *bp);
447void bkvasync(struct buf *bp);
448void bkvasync_all(struct buf *bp);
449
81b5c339 450struct buf *getpbuf (int *);
2f0acc22 451struct buf *getpbuf_mem (int *);
9a82e536 452struct buf *getpbuf_kva (int *);
d32579c3 453
54078292 454int inmem (struct vnode *, off_t);
b1c20cfa 455struct buf *findblk (struct vnode *, off_t, int);
54078292 456struct buf *getblk (struct vnode *, off_t, int, int, int);
9de13b88 457struct buf *getcacheblk (struct vnode *, off_t, int, int);
d2812084 458struct buf *getnewbuf(int, int, int, int);
283b9448
MD
459void bqhold(struct buf *bp);
460void bqdrop(struct buf *bp);
461void regetblk(struct buf *bp);
81b5c339 462struct bio *push_bio(struct bio *);
b77cfc40 463struct bio *pop_bio(struct bio *);
ae8e83e6
MD
464int biowait (struct bio *, const char *);
465int biowait_timeout (struct bio *, const char *, int);
466void bpdone (struct buf *, int);
81b5c339 467void biodone (struct bio *);
ae8e83e6 468void biodone_sync (struct bio *);
7f86d367 469void pbuf_adjcount(int *pfreecnt, int n);
984263bc 470
81b5c339 471void cluster_append(struct bio *, struct buf *);
9c93755a 472int cluster_readx (struct vnode *, off_t, off_t, int, int,
364c022c 473 size_t, size_t, struct buf **);
9c93755a 474void cluster_readcb (struct vnode *, off_t, off_t, int, int,
dbb11a6e 475 size_t, size_t, void (*func)(struct bio *), void *arg);
e92ca23a 476void cluster_write (struct buf *, off_t, int, int);
fef8985e
MD
477int physread (struct dev_read_args *);
478int physwrite (struct dev_write_args *);
b153f746 479void vfs_bio_clrbuf (struct buf *);
10f3fee5 480void vfs_busy_pages (struct vnode *, struct buf *);
b153f746 481void vfs_unbusy_pages (struct buf *);
b153f746
RG
482void relpbuf (struct buf *, int *);
483void brelvp (struct buf *);
7608650f 484int bgetvp (struct vnode *, struct buf *, int);
77912481 485void bsetrunningbufspace(struct buf *, int);
dc6a6bd2 486void allocbuf (struct buf *bp, int size);
41cbf46c 487int scan_all_buffers (int (*)(struct buf *, void *), void *);
1f1ea522 488void reassignbuf (struct buf *);
b153f746 489struct buf *trypbuf (int *);
9a82e536 490struct buf *trypbuf_kva (int *);
408357d8 491void bio_ops_sync(struct mount *mp);
3b48c3c1 492void nestiobuf_done(struct bio *mbio, int donebytes, int error, struct devstat *stats);
3adc52bc 493void nestiobuf_init(struct bio *mbio);
3b48c3c1 494void nestiobuf_add(struct bio *mbio, struct buf *bp, int off, size_t size, struct devstat *stats);
3adc52bc
MD
495void nestiobuf_start(struct bio *mbio);
496void nestiobuf_error(struct bio *mbio, int error);
cb0f6a61 497const char *buf_cmd_name(struct buf *bp);
03d6a592
MD
498#endif /* _KERNEL */
499#endif /* _KERNEL || _KERNEL_STRUCTURES */
500#endif /* !_SYS_BUF_H_ */