]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/sys/buf.h
loader: uboot disk ioctl should call disk_ioctl
[FreeBSD/FreeBSD.git] / sys / sys / buf.h
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.
18  * 3. Neither the name of the University nor the names of its contributors
19  *    may be used to endorse or promote products derived from this software
20  *    without specific prior written permission.
21  *
22  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
23  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
26  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32  * SUCH DAMAGE.
33  *
34  *      @(#)buf.h       8.9 (Berkeley) 3/30/95
35  * $FreeBSD$
36  */
37
38 #ifndef _SYS_BUF_H_
39 #define _SYS_BUF_H_
40
41 #include <sys/bufobj.h>
42 #include <sys/queue.h>
43 #include <sys/lock.h>
44 #include <sys/lockmgr.h>
45
46 struct bio;
47 struct buf;
48 struct bufobj;
49 struct mount;
50 struct vnode;
51 struct uio;
52
53 /*
54  * To avoid including <ufs/ffs/softdep.h> 
55  */   
56 LIST_HEAD(workhead, worklist);
57 /*
58  * These are currently used only by the soft dependency code, hence
59  * are stored once in a global variable. If other subsystems wanted
60  * to use these hooks, a pointer to a set of bio_ops could be added
61  * to each buffer.
62  */
63 extern struct bio_ops {
64         void    (*io_start)(struct buf *);
65         void    (*io_complete)(struct buf *);
66         void    (*io_deallocate)(struct buf *);
67         int     (*io_countdeps)(struct buf *, int);
68 } bioops;
69
70 struct vm_object;
71 struct vm_page;
72
73 typedef unsigned char b_xflags_t;
74
75 /*
76  * The buffer header describes an I/O operation in the kernel.
77  *
78  * NOTES:
79  *      b_bufsize, b_bcount.  b_bufsize is the allocation size of the
80  *      buffer, either DEV_BSIZE or PAGE_SIZE aligned.  b_bcount is the
81  *      originally requested buffer size and can serve as a bounds check
82  *      against EOF.  For most, but not all uses, b_bcount == b_bufsize.
83  *
84  *      b_dirtyoff, b_dirtyend.  Buffers support piecemeal, unaligned
85  *      ranges of dirty data that need to be written to backing store.
86  *      The range is typically clipped at b_bcount ( not b_bufsize ).
87  *
88  *      b_resid.  Number of bytes remaining in I/O.  After an I/O operation
89  *      completes, b_resid is usually 0 indicating 100% success.
90  *
91  *      All fields are protected by the buffer lock except those marked:
92  *              V - Protected by owning bufobj lock
93  *              Q - Protected by the buf queue lock
94  *              D - Protected by an dependency implementation specific lock
95  */
96 struct buf {
97         struct bufobj   *b_bufobj;
98         long            b_bcount;
99         void            *b_caller1;
100         caddr_t         b_data;
101         int             b_error;
102         uint16_t        b_iocmd;        /* BIO_* bio_cmd from bio.h */
103         uint16_t        b_ioflags;      /* BIO_* bio_flags from bio.h */
104         off_t           b_iooffset;
105         long            b_resid;
106         void    (*b_iodone)(struct buf *);
107         daddr_t b_blkno;                /* Underlying physical block number. */
108         off_t   b_offset;               /* Offset into file. */
109         TAILQ_ENTRY(buf) b_bobufs;      /* (V) Buffer's associated vnode. */
110         uint32_t        b_vflags;       /* (V) BV_* flags */
111         unsigned short b_qindex;        /* (Q) buffer queue index */
112         uint32_t        b_flags;        /* B_* flags. */
113         b_xflags_t b_xflags;            /* extra flags */
114         struct lock b_lock;             /* Buffer lock */
115         long    b_bufsize;              /* Allocated buffer size. */
116         int     b_runningbufspace;      /* when I/O is running, pipelining */
117         int     b_kvasize;              /* size of kva for buffer */
118         int     b_dirtyoff;             /* Offset in buffer of dirty region. */
119         int     b_dirtyend;             /* Offset of end of dirty region. */
120         caddr_t b_kvabase;              /* base kva for buffer */
121         daddr_t b_lblkno;               /* Logical block number. */
122         struct  vnode *b_vp;            /* Device vnode. */
123         struct  ucred *b_rcred;         /* Read credentials reference. */
124         struct  ucred *b_wcred;         /* Write credentials reference. */
125         union {
126                 TAILQ_ENTRY(buf) b_freelist; /* (Q) */
127                 struct {
128                         void    (*b_pgiodone)(void *, vm_page_t *, int, int);
129                         int     b_pgbefore;
130                         int     b_pgafter;
131                 };
132         };
133         union   cluster_info {
134                 TAILQ_HEAD(cluster_list_head, buf) cluster_head;
135                 TAILQ_ENTRY(buf) cluster_entry;
136         } b_cluster;
137         struct  vm_page *b_pages[btoc(MAXPHYS)];
138         int             b_npages;
139         struct  workhead b_dep;         /* (D) List of filesystem dependencies. */
140         void    *b_fsprivate1;
141         void    *b_fsprivate2;
142         void    *b_fsprivate3;
143
144 #if defined(FULL_BUF_TRACKING)
145 #define BUF_TRACKING_SIZE       32
146 #define BUF_TRACKING_ENTRY(x)   ((x) & (BUF_TRACKING_SIZE - 1))
147         const char      *b_io_tracking[BUF_TRACKING_SIZE];
148         uint32_t        b_io_tcnt;
149 #elif defined(BUF_TRACKING)
150         const char      *b_io_tracking;
151 #endif
152 };
153
154 #define b_object        b_bufobj->bo_object
155
156 /*
157  * These flags are kept in b_flags.
158  *
159  * Notes:
160  *
161  *      B_ASYNC         VOP calls on bp's are usually async whether or not
162  *                      B_ASYNC is set, but some subsystems, such as NFS, like 
163  *                      to know what is best for the caller so they can
164  *                      optimize the I/O.
165  *
166  *      B_PAGING        Indicates that bp is being used by the paging system or
167  *                      some paging system and that the bp is not linked into
168  *                      the b_vp's clean/dirty linked lists or ref counts.
169  *                      Buffer vp reassignments are illegal in this case.
170  *
171  *      B_CACHE         This may only be set if the buffer is entirely valid.
172  *                      The situation where B_DELWRI is set and B_CACHE is
173  *                      clear MUST be committed to disk by getblk() so 
174  *                      B_DELWRI can also be cleared.  See the comments for
175  *                      getblk() in kern/vfs_bio.c.  If B_CACHE is clear,
176  *                      the caller is expected to clear BIO_ERROR and B_INVAL,
177  *                      set BIO_READ, and initiate an I/O.
178  *
179  *                      The 'entire buffer' is defined to be the range from
180  *                      0 through b_bcount.
181  *
182  *      B_MALLOC        Request that the buffer be allocated from the malloc
183  *                      pool, DEV_BSIZE aligned instead of PAGE_SIZE aligned.
184  *
185  *      B_CLUSTEROK     This flag is typically set for B_DELWRI buffers
186  *                      by filesystems that allow clustering when the buffer
187  *                      is fully dirty and indicates that it may be clustered
188  *                      with other adjacent dirty buffers.  Note the clustering
189  *                      may not be used with the stage 1 data write under NFS
190  *                      but may be used for the commit rpc portion.
191  *
192  *      B_VMIO          Indicates that the buffer is tied into an VM object.
193  *                      The buffer's data is always PAGE_SIZE aligned even
194  *                      if b_bufsize and b_bcount are not.  ( b_bufsize is 
195  *                      always at least DEV_BSIZE aligned, though ).
196  *
197  *      B_DIRECT        Hint that we should attempt to completely free
198  *                      the pages underlying the buffer.  B_DIRECT is
199  *                      sticky until the buffer is released and typically
200  *                      only has an effect when B_RELBUF is also set.
201  *
202  */
203
204 #define B_AGE           0x00000001      /* Move to age queue when I/O done. */
205 #define B_NEEDCOMMIT    0x00000002      /* Append-write in progress. */
206 #define B_ASYNC         0x00000004      /* Start I/O, do not wait. */
207 #define B_DIRECT        0x00000008      /* direct I/O flag (pls free vmio) */
208 #define B_DEFERRED      0x00000010      /* Skipped over for cleaning */
209 #define B_CACHE         0x00000020      /* Bread found us in the cache. */
210 #define B_VALIDSUSPWRT  0x00000040      /* Valid write during suspension. */
211 #define B_DELWRI        0x00000080      /* Delay I/O until buffer reused. */
212 #define B_00000100      0x00000100      /* Available flag. */
213 #define B_DONE          0x00000200      /* I/O completed. */
214 #define B_EINTR         0x00000400      /* I/O was interrupted */
215 #define B_NOREUSE       0x00000800      /* Contents not reused once released. */
216 #define B_00001000      0x00001000      /* Available flag. */
217 #define B_INVAL         0x00002000      /* Does not contain valid info. */
218 #define B_BARRIER       0x00004000      /* Write this and all preceding first. */
219 #define B_NOCACHE       0x00008000      /* Do not cache block after use. */
220 #define B_MALLOC        0x00010000      /* malloced b_data */
221 #define B_CLUSTEROK     0x00020000      /* Pagein op, so swap() can count it. */
222 #define B_00040000      0x00040000      /* Available flag. */
223 #define B_00080000      0x00080000      /* Available flag. */
224 #define B_00100000      0x00100000      /* Available flag. */
225 #define B_00200000      0x00200000      /* Available flag. */
226 #define B_RELBUF        0x00400000      /* Release VMIO buffer. */
227 #define B_FS_FLAG1      0x00800000      /* Available flag for FS use. */
228 #define B_NOCOPY        0x01000000      /* Don't copy-on-write this buf. */
229 #define B_INFREECNT     0x02000000      /* buf is counted in numfreebufs */
230 #define B_PAGING        0x04000000      /* volatile paging I/O -- bypass VMIO */
231 #define B_MANAGED       0x08000000      /* Managed by FS. */
232 #define B_RAM           0x10000000      /* Read ahead mark (flag) */
233 #define B_VMIO          0x20000000      /* VMIO flag */
234 #define B_CLUSTER       0x40000000      /* pagein op, so swap() can count it */
235 #define B_REMFREE       0x80000000      /* Delayed bremfree */
236
237 #define PRINT_BUF_FLAGS "\20\40remfree\37cluster\36vmio\35ram\34managed" \
238         "\33paging\32infreecnt\31nocopy\30b23\27relbuf\26b21\25b20" \
239         "\24b19\23b18\22clusterok\21malloc\20nocache\17b14\16inval" \
240         "\15b12\14noreuse\13eintr\12done\11b8\10delwri" \
241         "\7validsuspwrt\6cache\5deferred\4direct\3async\2needcommit\1age"
242
243 /*
244  * These flags are kept in b_xflags.
245  */
246 #define BX_VNDIRTY      0x00000001      /* On vnode dirty list */
247 #define BX_VNCLEAN      0x00000002      /* On vnode clean list */
248 #define BX_BKGRDWRITE   0x00000010      /* Do writes in background */
249 #define BX_BKGRDMARKER  0x00000020      /* Mark buffer for splay tree */
250 #define BX_ALTDATA      0x00000040      /* Holds extended data */
251
252 #define PRINT_BUF_XFLAGS "\20\7altdata\6bkgrdmarker\5bkgrdwrite\2clean\1dirty"
253
254 #define NOOFFSET        (-1LL)          /* No buffer offset calculated yet */
255
256 /*
257  * These flags are kept in b_vflags.
258  */
259 #define BV_SCANNED      0x00000001      /* VOP_FSYNC funcs mark written bufs */
260 #define BV_BKGRDINPROG  0x00000002      /* Background write in progress */
261 #define BV_BKGRDWAIT    0x00000004      /* Background write waiting */
262 #define BV_BKGRDERR     0x00000008      /* Error from background write */
263
264 #define PRINT_BUF_VFLAGS "\20\4bkgrderr\3bkgrdwait\2bkgrdinprog\1scanned"
265
266 #ifdef _KERNEL
267 /*
268  * Buffer locking
269  */
270 extern const char *buf_wmesg;           /* Default buffer lock message */
271 #define BUF_WMESG "bufwait"
272 #include <sys/proc.h>                   /* XXX for curthread */
273 #include <sys/mutex.h>
274
275 /*
276  * Initialize a lock.
277  */
278 #define BUF_LOCKINIT(bp)                                                \
279         lockinit(&(bp)->b_lock, PRIBIO + 4, buf_wmesg, 0, 0)
280 /*
281  *
282  * Get a lock sleeping non-interruptably until it becomes available.
283  */
284 #define BUF_LOCK(bp, locktype, interlock)                               \
285         _lockmgr_args_rw(&(bp)->b_lock, (locktype), (interlock),        \
286             LK_WMESG_DEFAULT, LK_PRIO_DEFAULT, LK_TIMO_DEFAULT,         \
287             LOCK_FILE, LOCK_LINE)
288
289 /*
290  * Get a lock sleeping with specified interruptably and timeout.
291  */
292 #define BUF_TIMELOCK(bp, locktype, interlock, wmesg, catch, timo)       \
293         _lockmgr_args_rw(&(bp)->b_lock, (locktype) | LK_TIMELOCK,       \
294             (interlock), (wmesg), (PRIBIO + 4) | (catch), (timo),       \
295             LOCK_FILE, LOCK_LINE)
296
297 /*
298  * Release a lock. Only the acquiring process may free the lock unless
299  * it has been handed off to biodone.
300  */
301 #define BUF_UNLOCK(bp) do {                                             \
302         KASSERT(((bp)->b_flags & B_REMFREE) == 0,                       \
303             ("BUF_UNLOCK %p while B_REMFREE is still set.", (bp)));     \
304                                                                         \
305         (void)_lockmgr_args(&(bp)->b_lock, LK_RELEASE, NULL,            \
306             LK_WMESG_DEFAULT, LK_PRIO_DEFAULT, LK_TIMO_DEFAULT,         \
307             LOCK_FILE, LOCK_LINE);                                      \
308 } while (0)
309
310 /*
311  * Check if a buffer lock is recursed.
312  */
313 #define BUF_LOCKRECURSED(bp)                                            \
314         lockmgr_recursed(&(bp)->b_lock)
315
316 /*
317  * Check if a buffer lock is currently held.
318  */
319 #define BUF_ISLOCKED(bp)                                                \
320         lockstatus(&(bp)->b_lock)
321 /*
322  * Free a buffer lock.
323  */
324 #define BUF_LOCKFREE(bp)                                                \
325         lockdestroy(&(bp)->b_lock)
326
327 /*
328  * Print informations on a buffer lock.
329  */
330 #define BUF_LOCKPRINTINFO(bp)                                           \
331         lockmgr_printinfo(&(bp)->b_lock)
332
333 /*
334  * Buffer lock assertions.
335  */
336 #if defined(INVARIANTS) && defined(INVARIANT_SUPPORT)
337 #define BUF_ASSERT_LOCKED(bp)                                           \
338         _lockmgr_assert(&(bp)->b_lock, KA_LOCKED, LOCK_FILE, LOCK_LINE)
339 #define BUF_ASSERT_SLOCKED(bp)                                          \
340         _lockmgr_assert(&(bp)->b_lock, KA_SLOCKED, LOCK_FILE, LOCK_LINE)
341 #define BUF_ASSERT_XLOCKED(bp)                                          \
342         _lockmgr_assert(&(bp)->b_lock, KA_XLOCKED, LOCK_FILE, LOCK_LINE)
343 #define BUF_ASSERT_UNLOCKED(bp)                                         \
344         _lockmgr_assert(&(bp)->b_lock, KA_UNLOCKED, LOCK_FILE, LOCK_LINE)
345 #define BUF_ASSERT_HELD(bp)
346 #define BUF_ASSERT_UNHELD(bp)
347 #else
348 #define BUF_ASSERT_LOCKED(bp)
349 #define BUF_ASSERT_SLOCKED(bp)
350 #define BUF_ASSERT_XLOCKED(bp)
351 #define BUF_ASSERT_UNLOCKED(bp)
352 #define BUF_ASSERT_HELD(bp)
353 #define BUF_ASSERT_UNHELD(bp)
354 #endif
355
356 #ifdef _SYS_PROC_H_     /* Avoid #include <sys/proc.h> pollution */
357 /*
358  * When initiating asynchronous I/O, change ownership of the lock to the
359  * kernel. Once done, the lock may legally released by biodone. The
360  * original owning process can no longer acquire it recursively, but must
361  * wait until the I/O is completed and the lock has been freed by biodone.
362  */
363 #define BUF_KERNPROC(bp)                                                \
364         _lockmgr_disown(&(bp)->b_lock, LOCK_FILE, LOCK_LINE)
365 #endif
366
367 #endif /* _KERNEL */
368
369 struct buf_queue_head {
370         TAILQ_HEAD(buf_queue, buf) queue;
371         daddr_t last_pblkno;
372         struct  buf *insert_point;
373         struct  buf *switch_point;
374 };
375
376 /*
377  * This structure describes a clustered I/O. 
378  */
379 struct cluster_save {
380         long    bs_bcount;              /* Saved b_bcount. */
381         long    bs_bufsize;             /* Saved b_bufsize. */
382         int     bs_nchildren;           /* Number of associated buffers. */
383         struct buf **bs_children;       /* List of associated buffers. */
384 };
385
386 #ifdef _KERNEL
387
388 static __inline int
389 bwrite(struct buf *bp)
390 {
391
392         KASSERT(bp->b_bufobj != NULL, ("bwrite: no bufobj bp=%p", bp));
393         KASSERT(bp->b_bufobj->bo_ops != NULL, ("bwrite: no bo_ops bp=%p", bp));
394         KASSERT(bp->b_bufobj->bo_ops->bop_write != NULL,
395             ("bwrite: no bop_write bp=%p", bp));
396         return (BO_WRITE(bp->b_bufobj, bp));
397 }
398
399 static __inline void
400 bstrategy(struct buf *bp)
401 {
402
403         KASSERT(bp->b_bufobj != NULL, ("bstrategy: no bufobj bp=%p", bp));
404         KASSERT(bp->b_bufobj->bo_ops != NULL,
405             ("bstrategy: no bo_ops bp=%p", bp));
406         KASSERT(bp->b_bufobj->bo_ops->bop_strategy != NULL,
407             ("bstrategy: no bop_strategy bp=%p", bp));
408         BO_STRATEGY(bp->b_bufobj, bp);
409 }
410
411 static __inline void
412 buf_start(struct buf *bp)
413 {
414         if (bioops.io_start)
415                 (*bioops.io_start)(bp);
416 }
417
418 static __inline void
419 buf_complete(struct buf *bp)
420 {
421         if (bioops.io_complete)
422                 (*bioops.io_complete)(bp);
423 }
424
425 static __inline void
426 buf_deallocate(struct buf *bp)
427 {
428         if (bioops.io_deallocate)
429                 (*bioops.io_deallocate)(bp);
430 }
431
432 static __inline int
433 buf_countdeps(struct buf *bp, int i)
434 {
435         if (bioops.io_countdeps)
436                 return ((*bioops.io_countdeps)(bp, i));
437         else
438                 return (0);
439 }
440
441 static __inline void
442 buf_track(struct buf *bp, const char *location)
443 {
444
445 #if defined(FULL_BUF_TRACKING)
446         bp->b_io_tracking[BUF_TRACKING_ENTRY(bp->b_io_tcnt++)] = location;
447 #elif defined(BUF_TRACKING)
448         bp->b_io_tracking = location;
449 #endif
450 }
451
452 #endif /* _KERNEL */
453
454 /*
455  * Zero out the buffer's data area.
456  */
457 #define clrbuf(bp) {                                                    \
458         bzero((bp)->b_data, (u_int)(bp)->b_bcount);                     \
459         (bp)->b_resid = 0;                                              \
460 }
461
462 /*
463  * Flags for getblk's last parameter.
464  */
465 #define GB_LOCK_NOWAIT  0x0001          /* Fail if we block on a buf lock. */
466 #define GB_NOCREAT      0x0002          /* Don't create a buf if not found. */
467 #define GB_NOWAIT_BD    0x0004          /* Do not wait for bufdaemon. */
468 #define GB_UNMAPPED     0x0008          /* Do not mmap buffer pages. */
469 #define GB_KVAALLOC     0x0010          /* But allocate KVA. */
470
471 #ifdef _KERNEL
472 extern int      nbuf;                   /* The number of buffer headers */
473 extern long     maxswzone;              /* Max KVA for swap structures */
474 extern long     maxbcache;              /* Max KVA for buffer cache */
475 extern long     runningbufspace;
476 extern long     hibufspace;
477 extern int      dirtybufthresh;
478 extern int      bdwriteskip;
479 extern int      dirtybufferflushes;
480 extern int      altbufferflushes;
481 extern int      nswbuf;                 /* Number of swap I/O buffer headers. */
482 extern int      cluster_pbuf_freecnt;   /* Number of pbufs for clusters */
483 extern int      vnode_pbuf_freecnt;     /* Number of pbufs for vnode pager */
484 extern int      vnode_async_pbuf_freecnt; /* Number of pbufs for vnode pager,
485                                              asynchronous reads */
486 extern caddr_t  unmapped_buf;   /* Data address for unmapped buffers. */
487
488 static inline int
489 buf_mapped(struct buf *bp)
490 {
491
492         return (bp->b_data != unmapped_buf);
493 }
494
495 void    runningbufwakeup(struct buf *);
496 void    waitrunningbufspace(void);
497 caddr_t kern_vfs_bio_buffer_alloc(caddr_t v, long physmem_est);
498 void    bufinit(void);
499 void    bufshutdown(int);
500 void    bdata2bio(struct buf *bp, struct bio *bip);
501 void    bwillwrite(void);
502 int     buf_dirty_count_severe(void);
503 void    bremfree(struct buf *);
504 void    bremfreef(struct buf *);        /* XXX Force bremfree, only for nfs. */
505 #define bread(vp, blkno, size, cred, bpp) \
506             breadn_flags(vp, blkno, size, NULL, NULL, 0, cred, 0, bpp)
507 #define bread_gb(vp, blkno, size, cred, gbflags, bpp) \
508             breadn_flags(vp, blkno, size, NULL, NULL, 0, cred, \
509                 gbflags, bpp)
510 #define breadn(vp, blkno, size, rablkno, rabsize, cnt, cred, bpp) \
511             breadn_flags(vp, blkno, size, rablkno, rabsize, cnt, cred, 0, bpp)
512 int     breadn_flags(struct vnode *, daddr_t, int, daddr_t *, int *, int,
513             struct ucred *, int, struct buf **);
514 void    breada(struct vnode *, daddr_t *, int *, int, struct ucred *);
515 void    bdwrite(struct buf *);
516 void    bawrite(struct buf *);
517 void    babarrierwrite(struct buf *);
518 int     bbarrierwrite(struct buf *);
519 void    bdirty(struct buf *);
520 void    bundirty(struct buf *);
521 void    bufstrategy(struct bufobj *, struct buf *);
522 void    brelse(struct buf *);
523 void    bqrelse(struct buf *);
524 int     vfs_bio_awrite(struct buf *);
525 void    vfs_drain_busy_pages(struct buf *bp);
526 struct buf *     getpbuf(int *);
527 struct buf *incore(struct bufobj *, daddr_t);
528 struct buf *gbincore(struct bufobj *, daddr_t);
529 struct buf *getblk(struct vnode *, daddr_t, int, int, int, int);
530 struct buf *geteblk(int, int);
531 int     bufwait(struct buf *);
532 int     bufwrite(struct buf *);
533 void    bufdone(struct buf *);
534 void    bufdone_finish(struct buf *);
535 void    bd_speedup(void);
536
537 int     cluster_read(struct vnode *, u_quad_t, daddr_t, long,
538             struct ucred *, long, int, int, struct buf **);
539 int     cluster_wbuild(struct vnode *, long, daddr_t, int, int);
540 void    cluster_write(struct vnode *, struct buf *, u_quad_t, int, int);
541 void    vfs_bio_brelse(struct buf *bp, int ioflags);
542 void    vfs_bio_bzero_buf(struct buf *bp, int base, int size);
543 void    vfs_bio_clrbuf(struct buf *);
544 void    vfs_bio_set_flags(struct buf *bp, int ioflags);
545 void    vfs_bio_set_valid(struct buf *, int base, int size);
546 void    vfs_busy_pages(struct buf *, int clear_modify);
547 void    vfs_unbusy_pages(struct buf *);
548 int     vmapbuf(struct buf *, int);
549 void    vunmapbuf(struct buf *);
550 void    relpbuf(struct buf *, int *);
551 void    brelvp(struct buf *);
552 void    bgetvp(struct vnode *, struct buf *);
553 void    pbgetbo(struct bufobj *bo, struct buf *bp);
554 void    pbgetvp(struct vnode *, struct buf *);
555 void    pbrelbo(struct buf *);
556 void    pbrelvp(struct buf *);
557 int     allocbuf(struct buf *bp, int size);
558 void    reassignbuf(struct buf *);
559 struct  buf *trypbuf(int *);
560 void    bwait(struct buf *, u_char, const char *);
561 void    bdone(struct buf *);
562
563 typedef daddr_t (vbg_get_lblkno_t)(struct vnode *, vm_ooffset_t);
564 typedef int (vbg_get_blksize_t)(struct vnode *, daddr_t);
565 int     vfs_bio_getpages(struct vnode *vp, struct vm_page **ma, int count,
566             int *rbehind, int *rahead, vbg_get_lblkno_t get_lblkno,
567             vbg_get_blksize_t get_blksize);
568
569 #endif /* _KERNEL */
570
571 #endif /* !_SYS_BUF_H_ */