The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/sys/bufobj.h

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    1 /*-
    2  * Copyright (c) 2004 Poul-Henning Kamp
    3  * All rights reserved.
    4  *
    5  * Redistribution and use in source and binary forms, with or without
    6  * modification, are permitted provided that the following conditions
    7  * are met:
    8  * 1. Redistributions of source code must retain the above copyright
    9  *    notice, this list of conditions and the following disclaimer.
   10  * 2. Redistributions in binary form must reproduce the above copyright
   11  *    notice, this list of conditions and the following disclaimer in the
   12  *    documentation and/or other materials provided with the distribution.
   13  *
   14  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
   15  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
   16  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
   17  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
   18  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
   19  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
   20  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
   21  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
   22  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
   23  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
   24  * SUCH DAMAGE.
   25  *
   26  * $FreeBSD$
   27  */
   28 
   29 /*
   30  * Architectural notes:
   31  *
   32  * bufobj is a new object which is what buffers hang from in the buffer
   33  * cache.
   34  *
   35  * This used to be vnodes, but we need non-vnode code to be able
   36  * to use the buffer cache as well, specifically geom classes like gbde,
   37  * raid3 and raid5.
   38  *
   39  * All vnodes will contain a bufobj initially, but down the road we may
   40  * want to only allocate bufobjs when they are needed.  There could be a
   41  * large number of vnodes in the system which wouldn't need a bufobj during
   42  * their lifetime.
   43  *
   44  * The exact relationship to the vmobject is not determined at this point,
   45  * it may in fact be that we find them to be two sides of the same object 
   46  * once things starts to crystalize.
   47  */
   48 
   49 #ifndef _SYS_BUFOBJ_H_
   50 #define _SYS_BUFOBJ_H_
   51 
   52 #if defined(_KERNEL) || defined(_KVM_VNODE)
   53 
   54 #include <sys/queue.h>
   55 #include <sys/_lock.h>
   56 #include <sys/_rwlock.h>
   57 #include <sys/_pctrie.h>
   58 
   59 struct bufobj;
   60 struct buf_ops;
   61 
   62 extern struct buf_ops buf_ops_bio;
   63 
   64 TAILQ_HEAD(buflists, buf);
   65 
   66 /* A Buffer list & trie */
   67 struct bufv {
   68         struct buflists bv_hd;          /* Sorted blocklist */
   69         struct pctrie   bv_root;        /* Buf trie */
   70         int             bv_cnt;         /* Number of buffers */
   71 };
   72 
   73 typedef void b_strategy_t(struct bufobj *, struct buf *);
   74 typedef int b_write_t(struct buf *);
   75 typedef int b_sync_t(struct bufobj *, int waitfor);
   76 typedef void b_bdflush_t(struct bufobj *, struct buf *);
   77 
   78 struct buf_ops {
   79         char            *bop_name;
   80         b_write_t       *bop_write;
   81         b_strategy_t    *bop_strategy;
   82         b_sync_t        *bop_sync;
   83         b_bdflush_t     *bop_bdflush;
   84 };
   85 
   86 #define BO_STRATEGY(bo, bp)     ((bo)->bo_ops->bop_strategy((bo), (bp)))
   87 #define BO_SYNC(bo, w)          ((bo)->bo_ops->bop_sync((bo), (w)))
   88 #define BO_WRITE(bo, bp)        ((bo)->bo_ops->bop_write((bp)))
   89 #define BO_BDFLUSH(bo, bp)      ((bo)->bo_ops->bop_bdflush((bo), (bp)))
   90 
   91 /*
   92  * Locking notes:
   93  * 'S' is sync_mtx
   94  * 'v' is the vnode lock which embeds the bufobj.
   95  * '-' Constant and unchanging after initialization.
   96  */
   97 struct bufobj {
   98         struct rwlock   bo_lock;        /* Lock which protects "i" things */
   99         struct buf_ops  *bo_ops;        /* - Buffer operations */
  100         struct vm_object *bo_object;    /* v Place to store VM object */
  101         LIST_ENTRY(bufobj) bo_synclist; /* S dirty vnode list */
  102         void            *bo_private;    /* private pointer */
  103         struct vnode    *__bo_vnode;    /*
  104                                          * XXX: This vnode pointer is here
  105                                          * XXX: only to keep the syncer working
  106                                          * XXX: for now.
  107                                          */
  108         struct bufv     bo_clean;       /* i Clean buffers */
  109         struct bufv     bo_dirty;       /* i Dirty buffers */
  110         long            bo_numoutput;   /* i Writes in progress */
  111         u_int           bo_flag;        /* i Flags */
  112         int             bo_bsize;       /* - Block size for i/o */
  113 };
  114 
  115 /*
  116  * XXX BO_ONWORKLST could be replaced with a check for NULL list elements
  117  * in v_synclist.
  118  */
  119 #define BO_ONWORKLST    (1 << 0)        /* On syncer work-list */
  120 #define BO_WWAIT        (1 << 1)        /* Wait for output to complete */
  121 #define BO_DEAD         (1 << 2)        /* Dead; only with INVARIANTS */
  122 
  123 #define BO_LOCKPTR(bo)          (&(bo)->bo_lock)
  124 #define BO_LOCK(bo)             rw_wlock(BO_LOCKPTR((bo)))
  125 #define BO_UNLOCK(bo)           rw_wunlock(BO_LOCKPTR((bo)))
  126 #define BO_RLOCK(bo)            rw_rlock(BO_LOCKPTR((bo)))
  127 #define BO_RUNLOCK(bo)          rw_runlock(BO_LOCKPTR((bo)))
  128 #define ASSERT_BO_WLOCKED(bo)   rw_assert(BO_LOCKPTR((bo)), RA_WLOCKED)
  129 #define ASSERT_BO_LOCKED(bo)    rw_assert(BO_LOCKPTR((bo)), RA_LOCKED)
  130 #define ASSERT_BO_UNLOCKED(bo)  rw_assert(BO_LOCKPTR((bo)), RA_UNLOCKED)
  131 
  132 void bufobj_wdrop(struct bufobj *bo);
  133 void bufobj_wref(struct bufobj *bo);
  134 void bufobj_wrefl(struct bufobj *bo);
  135 int bufobj_invalbuf(struct bufobj *bo, int flags, int slpflag, int slptimeo);
  136 int bufobj_wwait(struct bufobj *bo, int slpflag, int timeo);
  137 int bufsync(struct bufobj *bo, int waitfor);
  138 void bufbdflush(struct bufobj *bo, struct buf *bp);
  139 
  140 #endif /* defined(_KERNEL) || defined(_KVM_VNODE) */
  141 #endif /* _SYS_BUFOBJ_H_ */

Cache object: dd2427c8752c160606e6579323223945


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.