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 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293
|
/* Copyright (C) 2001-2005 by Hans Reiser, licensing governed by
reiser4progs/COPYING.
alloc.c -- reiser4 block allocator common code. */
#ifndef ENABLE_MINIMAL
#include <reiser4/libreiser4.h>
typedef enum alloc_init {
ALLOC_OPEN,
ALLOC_CREATE
} alloc_init_t;
bool_t reiser4_alloc_isdirty(reiser4_alloc_t *alloc) {
uint32_t state;
aal_assert("umka-2655", alloc != NULL);
state = reiser4call(alloc, get_state);
return (state & (1 << ENTITY_DIRTY));
}
void reiser4_alloc_mkdirty(reiser4_alloc_t *alloc) {
uint32_t state;
aal_assert("umka-2656", alloc != NULL);
state = reiser4call(alloc, get_state);
state |= (1 << ENTITY_DIRTY);
reiser4call(alloc, set_state, state);
}
void reiser4_alloc_mkclean(reiser4_alloc_t *alloc) {
uint32_t state;
aal_assert("umka-2657", alloc != NULL);
state = reiser4call(alloc, get_state);
state &= ~(1 << ENTITY_DIRTY);
reiser4call(alloc, set_state, state);
}
/* Common block allocator init function. It is used for open,
create and unpack block allocator instance. */
static reiser4_alloc_t *reiser4_alloc_init(reiser4_fs_t *fs,
count_t blocks,
alloc_init_t init)
{
rid_t pid;
uint32_t blksize;
reiser4_plug_t *plug;
reiser4_alloc_t *alloc;
/* Initializing instance of block allocator */
if (!(alloc = aal_calloc(sizeof(*alloc), 0)))
return NULL;
alloc->fs = fs;
if ((pid = reiser4_format_alloc_pid(fs->format)) == INVAL_PID) {
aal_error("Invalid block allocator plugin id has "
"been found.");
goto error_free_alloc;
}
/* Finding block allocator plugin */
if (!(plug = reiser4_factory_ifind(ALLOC_PLUG_TYPE, pid))) {
aal_error("Can't find block allocator plugin by "
"its id 0x%x.", pid);
goto error_free_alloc;
}
blksize = reiser4_master_get_blksize(fs->master);
/* Initializing block allocator entity. */
switch (init) {
case ALLOC_OPEN:
alloc->ent = plugcall((reiser4_alloc_plug_t *)plug,
open, fs->device, blksize, blocks);
break;
case ALLOC_CREATE:
alloc->ent = plugcall((reiser4_alloc_plug_t *)plug,
create, fs->device, blksize, blocks);
break;
}
if (!alloc->ent) {
aal_error("Can't initialize block allocator.");
goto error_free_alloc;
}
return alloc;
error_free_alloc:
aal_free(alloc);
return NULL;
}
/* Initializes block allocator structures and make request to block allocator
plugin for opening. Returns initialized instance, which may be used in all
further operations. */
reiser4_alloc_t *reiser4_alloc_open(
reiser4_fs_t *fs, /* fs allocator is going to be opened on */
count_t blocks) /* filesystem size in blocks */
{
aal_assert("umka-135", fs != NULL);
aal_assert("umka-135", fs->format != NULL);
return reiser4_alloc_init(fs, blocks, ALLOC_OPEN);
}
/* Creates block allocator instance. Initializes all structures, calles block
allocator plugin in order to initialize allocator instance and returns
instance to caller. */
reiser4_alloc_t *reiser4_alloc_create(
reiser4_fs_t *fs, /* fs block allocator is going to be created on */
count_t blocks) /* filesystem size in blocks */
{
aal_assert("umka-726", fs != NULL);
aal_assert("umka-1694", fs->format != NULL);
return reiser4_alloc_init(fs, blocks, ALLOC_CREATE);
}
errno_t reiser4_alloc_assign(reiser4_alloc_t *alloc,
reiser4_bitmap_t *bitmap)
{
aal_assert("vpf-582", alloc != NULL);
aal_assert("umka-1848", bitmap != NULL);
return reiser4call(alloc, assign, bitmap);
}
errno_t reiser4_alloc_extract(reiser4_alloc_t *alloc,
reiser4_bitmap_t *bitmap)
{
aal_assert("umka-2191", alloc != NULL);
aal_assert("umka-2192", bitmap != NULL);
return reiser4call(alloc, extract, bitmap);
}
/* Make request to allocator plugin in order to save its data to device */
errno_t reiser4_alloc_sync(
reiser4_alloc_t *alloc) /* allocator to be synced */
{
aal_assert("umka-139", alloc != NULL);
if (!reiser4_alloc_isdirty(alloc))
return 0;
return reiser4call(alloc, sync);
}
/* Close passed allocator instance */
void reiser4_alloc_close(
reiser4_alloc_t *alloc) /* allocator to be closed */
{
aal_assert("umka-1504", alloc != NULL);
alloc->fs->alloc = NULL;
/* Calling the plugin for close its internal instance properly */
reiser4call(alloc, close);
aal_free(alloc);
}
/* Returns the number of free blocks in allocator */
count_t reiser4_alloc_free(
reiser4_alloc_t *alloc) /* allocator to be realeased */
{
aal_assert("umka-362", alloc != NULL);
return reiser4call(alloc, free);
}
/* Returns the number of used blocks in allocator */
count_t reiser4_alloc_used(
reiser4_alloc_t *alloc) /* allocator used blocks will be obtained
from */
{
aal_assert("umka-499", alloc != NULL);
return reiser4call(alloc, used);
}
/* Marks specified blocks as used */
errno_t reiser4_alloc_occupy(
reiser4_alloc_t *alloc, /* allocator for working with */
blk_t start, /* start block to be marked */
count_t count) /* count to be marked */
{
aal_assert("umka-501", alloc != NULL);
reiser4call(alloc, occupy, start, count);
if (alloc->hook.alloc)
alloc->hook.alloc(alloc, start, count, alloc->hook.data);
return 0;
}
/* Deallocs specified blocks */
errno_t reiser4_alloc_release(
reiser4_alloc_t *alloc, /* allocator for wiorking with */
blk_t start, /* start block to be deallocated */
count_t count) /* count of blocks to be deallocated */
{
errno_t res;
aal_assert("umka-503", alloc != NULL);
if ((res = reiser4call(alloc, release, start, count)))
return res;
if (alloc->hook.release) {
alloc->hook.release(alloc, start, count,
alloc->hook.data);
}
return 0;
}
/* Makes request to plugin for allocating block */
count_t reiser4_alloc_allocate(
reiser4_alloc_t *alloc, /* allocator for working with */
blk_t *start, /* start block */
count_t count) /* requested block count */
{
count_t blocks;
aal_assert("umka-505", alloc != NULL);
*start = 0;
blocks = reiser4call(alloc, allocate, start, count);
if (blocks && alloc->hook.alloc)
alloc->hook.alloc(alloc, *start, blocks, alloc->hook.data);
return blocks;
}
errno_t reiser4_alloc_valid(
reiser4_alloc_t *alloc) /* allocator to be checked */
{
aal_assert("umka-833", alloc != NULL);
return reiser4call(alloc, valid);
}
/* Returns TRUE if specified blocks are used. */
bool_t reiser4_alloc_occupied(
reiser4_alloc_t *alloc, /* allocator for working with */
blk_t start, /* start block to be tested (used or not) */
count_t count) /* count of blocks to be tested */
{
aal_assert("umka-662", alloc != NULL);
return reiser4call(alloc, occupied, start, count);
}
/* Returns TRUE if specified blocks are unused. */
bool_t reiser4_alloc_available(
reiser4_alloc_t *alloc, /* allocator for working with */
blk_t start, /* start block to be tested (used or not) */
count_t count) /* count of blocks to be tested */
{
aal_assert("umka-662", alloc != NULL);
return reiser4call(alloc, available, start, count);
}
errno_t reiser4_alloc_layout(reiser4_alloc_t *alloc,
region_func_t region_func,
void *data)
{
aal_assert("umka-1080", alloc != NULL);
aal_assert("umka-1081", region_func != NULL);
return reiser4call(alloc, layout, region_func, data);
}
errno_t reiser4_alloc_region(reiser4_alloc_t *alloc, blk_t blk,
region_func_t func, void *data)
{
aal_assert("vpf-557", alloc != NULL);
return reiser4call(alloc, region, blk, func, data);
}
#endif
|