1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
|
/* $NetBSD: chfs_pool.c,v 1.2 2012/02/28 02:48:39 christos Exp $ */
/*-
* Copyright (c) 2010 Department of Software Engineering,
* University of Szeged, Hungary
* All rights reserved.
*
* This code is derived from software contributed to The NetBSD Foundation
* by the Department of Software Engineering, University of Szeged, Hungary
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
/*
* Pool allocator and convenience routines for chfs.
*/
#include <sys/cdefs.h>
#include <sys/param.h>
#include <sys/pool.h>
#include <sys/atomic.h>
#include <uvm/uvm.h>
#include "chfs.h"
//#include </root/xipffs/netbsd.chfs/chfs.h>
/* --------------------------------------------------------------------- */
void * chfs_pool_page_alloc(struct pool *, int);
void chfs_pool_page_free(struct pool *, void *);
/* --------------------------------------------------------------------- */
struct pool_allocator chfs_pool_allocator = {
.pa_alloc = chfs_pool_page_alloc,
.pa_free = chfs_pool_page_free,
};
/* --------------------------------------------------------------------- */
void
chfs_pool_init(struct chfs_pool *chpp, size_t size, const char *what,
struct chfs_mount *chmp)
{
int cnt;
cnt = snprintf(chpp->chp_name, sizeof(chpp->chp_name),
"%s_chfs_%p", what, chmp);
KASSERT(cnt < sizeof(chpp->chp_name));
pool_init(&chpp->chp_pool, size, 0, 0, 0, chpp->chp_name,
&chfs_pool_allocator, IPL_NONE);
chpp->chp_mount = chmp;
}
/* --------------------------------------------------------------------- */
void
chfs_pool_destroy(struct chfs_pool *chpp)
{
pool_destroy((struct pool *)chpp);
}
/* --------------------------------------------------------------------- */
void *
chfs_pool_page_alloc(struct pool *pp, int flags)
{
struct chfs_pool *chpp;
struct chfs_mount *chmp;
unsigned int pages;
void *page;
dbg("CHFS: pool_page_alloc()\n");
chpp = (struct chfs_pool *)pp;
chmp = chpp->chp_mount;
pages = atomic_inc_uint_nv(&chmp->chm_pages_used);
if (pages >= CHFS_PAGES_MAX(chmp)) {
atomic_dec_uint(&chmp->chm_pages_used);
return NULL;
}
page = pool_get(pp, flags | PR_WAITOK);
if (page == NULL) {
atomic_dec_uint(&chmp->chm_pages_used);
}
return page;
}
/* --------------------------------------------------------------------- */
void
chfs_pool_page_free(struct pool *pp, void *v)
{
struct chfs_pool *chpp;
struct chfs_mount *chmp;
dbg("CHFS: pool_page_free()\n");
chpp = (struct chfs_pool *)pp;
chmp = chpp->chp_mount;
atomic_dec_uint(&chmp->chm_pages_used);
pool_put(pp,v);
}
/* --------------------------------------------------------------------- */
void
chfs_str_pool_init(struct chfs_str_pool *chsp, struct chfs_mount *chmp)
{
dbg("CHFS: str_pool_init()\n");
chfs_pool_init(&chsp->chsp_pool_16, 16, "str", chmp);
chfs_pool_init(&chsp->chsp_pool_32, 32, "str", chmp);
chfs_pool_init(&chsp->chsp_pool_64, 64, "str", chmp);
chfs_pool_init(&chsp->chsp_pool_128, 128, "str", chmp);
chfs_pool_init(&chsp->chsp_pool_256, 256, "str", chmp);
chfs_pool_init(&chsp->chsp_pool_512, 512, "str", chmp);
chfs_pool_init(&chsp->chsp_pool_1024, 1024, "str", chmp);
}
/* --------------------------------------------------------------------- */
void
chfs_str_pool_destroy(struct chfs_str_pool *chsp)
{
dbg("CHFS: str_pool_destroy()\n");
chfs_pool_destroy(&chsp->chsp_pool_16);
chfs_pool_destroy(&chsp->chsp_pool_32);
chfs_pool_destroy(&chsp->chsp_pool_64);
chfs_pool_destroy(&chsp->chsp_pool_128);
chfs_pool_destroy(&chsp->chsp_pool_256);
chfs_pool_destroy(&chsp->chsp_pool_512);
chfs_pool_destroy(&chsp->chsp_pool_1024);
}
/* --------------------------------------------------------------------- */
char *
chfs_str_pool_get(struct chfs_str_pool *chsp, size_t len, int flags)
{
struct chfs_pool *p;
dbg("CHFS: str_pool_get()\n");
KASSERT(len <= 1024);
if (len <= 16) p = &chsp->chsp_pool_16;
else if (len <= 32) p = &chsp->chsp_pool_32;
else if (len <= 64) p = &chsp->chsp_pool_64;
else if (len <= 128) p = &chsp->chsp_pool_128;
else if (len <= 256) p = &chsp->chsp_pool_256;
else if (len <= 512) p = &chsp->chsp_pool_512;
else if (len <= 1024) p = &chsp->chsp_pool_1024;
else {
KASSERT(0);
p = NULL; /* Silence compiler warnings */
}
return (char *)CHFS_POOL_GET(p, flags);
}
/* --------------------------------------------------------------------- */
void
chfs_str_pool_put(struct chfs_str_pool *chsp, char *str, size_t len)
{
struct chfs_pool *p;
dbg("CHFS: str_pool_put()\n");
KASSERT(len <= 1024);
if (len <= 16) p = &chsp->chsp_pool_16;
else if (len <= 32) p = &chsp->chsp_pool_32;
else if (len <= 64) p = &chsp->chsp_pool_64;
else if (len <= 128) p = &chsp->chsp_pool_128;
else if (len <= 256) p = &chsp->chsp_pool_256;
else if (len <= 512) p = &chsp->chsp_pool_512;
else if (len <= 1024) p = &chsp->chsp_pool_1024;
else {
KASSERT(0);
p = NULL; /* Silence compiler warnings */
}
CHFS_POOL_PUT(p, str);
}
|