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