]> bbs.cooldavid.org Git - net-next-2.6.git/blame - fs/nilfs2/bmap.c
nilfs2: remove pointless NULL check of bpop_commit_alloc_ptr function
[net-next-2.6.git] / fs / nilfs2 / bmap.c
CommitLineData
bdb265ea
KS
1/*
2 * bmap.c - NILFS block mapping.
3 *
4 * Copyright (C) 2006-2008 Nippon Telegraph and Telephone Corporation.
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19 *
20 * Written by Koji Sato <koji@osrg.net>.
21 */
22
23#include <linux/fs.h>
24#include <linux/string.h>
25#include <linux/errno.h>
26#include "nilfs.h"
27#include "bmap.h"
28#include "sb.h"
29#include "btnode.h"
30#include "mdt.h"
31#include "dat.h"
32#include "alloc.h"
33
34int nilfs_bmap_lookup_at_level(struct nilfs_bmap *bmap, __u64 key, int level,
35 __u64 *ptrp)
36{
37 __u64 ptr;
38 int ret;
39
40 down_read(&bmap->b_sem);
8acfbf09 41 ret = bmap->b_ops->bop_lookup(bmap, key, level, ptrp);
bdb265ea
KS
42 if (ret < 0)
43 goto out;
44 if (bmap->b_pops->bpop_translate != NULL) {
8acfbf09 45 ret = bmap->b_pops->bpop_translate(bmap, *ptrp, &ptr);
bdb265ea
KS
46 if (ret < 0)
47 goto out;
48 *ptrp = ptr;
49 }
50
51 out:
52 up_read(&bmap->b_sem);
53 return ret;
54}
55
56
57/**
58 * nilfs_bmap_lookup - find a record
59 * @bmap: bmap
60 * @key: key
61 * @recp: pointer to record
62 *
63 * Description: nilfs_bmap_lookup() finds a record whose key matches @key in
64 * @bmap.
65 *
66 * Return Value: On success, 0 is returned and the record associated with @key
67 * is stored in the place pointed by @recp. On error, one of the following
68 * negative error codes is returned.
69 *
70 * %-EIO - I/O error.
71 *
72 * %-ENOMEM - Insufficient amount of memory available.
73 *
74 * %-ENOENT - A record associated with @key does not exist.
75 */
76int nilfs_bmap_lookup(struct nilfs_bmap *bmap,
77 unsigned long key,
78 unsigned long *recp)
79{
80 __u64 ptr;
81 int ret;
82
83 /* XXX: use macro for level 1 */
84 ret = nilfs_bmap_lookup_at_level(bmap, key, 1, &ptr);
85 if (recp != NULL)
86 *recp = ptr;
87 return ret;
88}
89
90static int nilfs_bmap_do_insert(struct nilfs_bmap *bmap, __u64 key, __u64 ptr)
91{
92 __u64 keys[NILFS_BMAP_SMALL_HIGH + 1];
93 __u64 ptrs[NILFS_BMAP_SMALL_HIGH + 1];
94 int ret, n;
95
96 if (bmap->b_ops->bop_check_insert != NULL) {
8acfbf09 97 ret = bmap->b_ops->bop_check_insert(bmap, key);
bdb265ea 98 if (ret > 0) {
8acfbf09 99 n = bmap->b_ops->bop_gather_data(
bdb265ea
KS
100 bmap, keys, ptrs, NILFS_BMAP_SMALL_HIGH + 1);
101 if (n < 0)
102 return n;
103 ret = nilfs_btree_convert_and_insert(
104 bmap, key, ptr, keys, ptrs, n,
105 NILFS_BMAP_LARGE_LOW, NILFS_BMAP_LARGE_HIGH);
106 if (ret == 0)
107 bmap->b_u.u_flags |= NILFS_BMAP_LARGE;
108
109 return ret;
110 } else if (ret < 0)
111 return ret;
112 }
113
8acfbf09 114 return bmap->b_ops->bop_insert(bmap, key, ptr);
bdb265ea
KS
115}
116
117/**
118 * nilfs_bmap_insert - insert a new key-record pair into a bmap
119 * @bmap: bmap
120 * @key: key
121 * @rec: record
122 *
123 * Description: nilfs_bmap_insert() inserts the new key-record pair specified
124 * by @key and @rec into @bmap.
125 *
126 * Return Value: On success, 0 is returned. On error, one of the following
127 * negative error codes is returned.
128 *
129 * %-EIO - I/O error.
130 *
131 * %-ENOMEM - Insufficient amount of memory available.
132 *
133 * %-EEXIST - A record associated with @key already exist.
134 */
135int nilfs_bmap_insert(struct nilfs_bmap *bmap,
136 unsigned long key,
137 unsigned long rec)
138{
139 int ret;
140
141 down_write(&bmap->b_sem);
142 ret = nilfs_bmap_do_insert(bmap, key, rec);
143 up_write(&bmap->b_sem);
144 return ret;
145}
146
147static int nilfs_bmap_do_delete(struct nilfs_bmap *bmap, __u64 key)
148{
149 __u64 keys[NILFS_BMAP_LARGE_LOW + 1];
150 __u64 ptrs[NILFS_BMAP_LARGE_LOW + 1];
151 int ret, n;
152
153 if (bmap->b_ops->bop_check_delete != NULL) {
8acfbf09 154 ret = bmap->b_ops->bop_check_delete(bmap, key);
bdb265ea 155 if (ret > 0) {
8acfbf09 156 n = bmap->b_ops->bop_gather_data(
bdb265ea
KS
157 bmap, keys, ptrs, NILFS_BMAP_LARGE_LOW + 1);
158 if (n < 0)
159 return n;
160 ret = nilfs_direct_delete_and_convert(
161 bmap, key, keys, ptrs, n,
162 NILFS_BMAP_SMALL_LOW, NILFS_BMAP_SMALL_HIGH);
163 if (ret == 0)
164 bmap->b_u.u_flags &= ~NILFS_BMAP_LARGE;
165
166 return ret;
167 } else if (ret < 0)
168 return ret;
169 }
170
8acfbf09 171 return bmap->b_ops->bop_delete(bmap, key);
bdb265ea
KS
172}
173
174int nilfs_bmap_last_key(struct nilfs_bmap *bmap, unsigned long *key)
175{
176 __u64 lastkey;
177 int ret;
178
179 down_read(&bmap->b_sem);
8acfbf09 180 ret = bmap->b_ops->bop_last_key(bmap, &lastkey);
bdb265ea
KS
181 if (!ret)
182 *key = lastkey;
183 up_read(&bmap->b_sem);
184 return ret;
185}
186
187/**
188 * nilfs_bmap_delete - delete a key-record pair from a bmap
189 * @bmap: bmap
190 * @key: key
191 *
192 * Description: nilfs_bmap_delete() deletes the key-record pair specified by
193 * @key from @bmap.
194 *
195 * Return Value: On success, 0 is returned. On error, one of the following
196 * negative error codes is returned.
197 *
198 * %-EIO - I/O error.
199 *
200 * %-ENOMEM - Insufficient amount of memory available.
201 *
202 * %-ENOENT - A record associated with @key does not exist.
203 */
204int nilfs_bmap_delete(struct nilfs_bmap *bmap, unsigned long key)
205{
206 int ret;
207
208 down_write(&bmap->b_sem);
209 ret = nilfs_bmap_do_delete(bmap, key);
210 up_write(&bmap->b_sem);
211 return ret;
212}
213
214static int nilfs_bmap_do_truncate(struct nilfs_bmap *bmap, unsigned long key)
215{
216 __u64 lastkey;
217 int ret;
218
8acfbf09 219 ret = bmap->b_ops->bop_last_key(bmap, &lastkey);
bdb265ea
KS
220 if (ret < 0) {
221 if (ret == -ENOENT)
222 ret = 0;
223 return ret;
224 }
225
226 while (key <= lastkey) {
227 ret = nilfs_bmap_do_delete(bmap, lastkey);
228 if (ret < 0)
229 return ret;
8acfbf09 230 ret = bmap->b_ops->bop_last_key(bmap, &lastkey);
bdb265ea
KS
231 if (ret < 0) {
232 if (ret == -ENOENT)
233 ret = 0;
234 return ret;
235 }
236 }
237 return 0;
238}
239
240/**
241 * nilfs_bmap_truncate - truncate a bmap to a specified key
242 * @bmap: bmap
243 * @key: key
244 *
245 * Description: nilfs_bmap_truncate() removes key-record pairs whose keys are
246 * greater than or equal to @key from @bmap.
247 *
248 * Return Value: On success, 0 is returned. On error, one of the following
249 * negative error codes is returned.
250 *
251 * %-EIO - I/O error.
252 *
253 * %-ENOMEM - Insufficient amount of memory available.
254 */
255int nilfs_bmap_truncate(struct nilfs_bmap *bmap, unsigned long key)
256{
257 int ret;
258
259 down_write(&bmap->b_sem);
260 ret = nilfs_bmap_do_truncate(bmap, key);
261 up_write(&bmap->b_sem);
262 return ret;
263}
264
265/**
266 * nilfs_bmap_clear - free resources a bmap holds
267 * @bmap: bmap
268 *
269 * Description: nilfs_bmap_clear() frees resources associated with @bmap.
270 */
271void nilfs_bmap_clear(struct nilfs_bmap *bmap)
272{
273 down_write(&bmap->b_sem);
274 if (bmap->b_ops->bop_clear != NULL)
8acfbf09 275 bmap->b_ops->bop_clear(bmap);
bdb265ea
KS
276 up_write(&bmap->b_sem);
277}
278
279/**
280 * nilfs_bmap_propagate - propagate dirty state
281 * @bmap: bmap
282 * @bh: buffer head
283 *
284 * Description: nilfs_bmap_propagate() marks the buffers that directly or
285 * indirectly refer to the block specified by @bh dirty.
286 *
287 * Return Value: On success, 0 is returned. On error, one of the following
288 * negative error codes is returned.
289 *
290 * %-EIO - I/O error.
291 *
292 * %-ENOMEM - Insufficient amount of memory available.
293 */
294int nilfs_bmap_propagate(struct nilfs_bmap *bmap, struct buffer_head *bh)
295{
296 int ret;
297
298 down_write(&bmap->b_sem);
8acfbf09 299 ret = bmap->b_ops->bop_propagate(bmap, bh);
bdb265ea
KS
300 up_write(&bmap->b_sem);
301 return ret;
302}
303
304/**
305 * nilfs_bmap_lookup_dirty_buffers -
306 * @bmap: bmap
307 * @listp: pointer to buffer head list
308 */
309void nilfs_bmap_lookup_dirty_buffers(struct nilfs_bmap *bmap,
310 struct list_head *listp)
311{
312 if (bmap->b_ops->bop_lookup_dirty_buffers != NULL)
8acfbf09 313 bmap->b_ops->bop_lookup_dirty_buffers(bmap, listp);
bdb265ea
KS
314}
315
316/**
317 * nilfs_bmap_assign - assign a new block number to a block
318 * @bmap: bmap
319 * @bhp: pointer to buffer head
320 * @blocknr: block number
321 * @binfo: block information
322 *
323 * Description: nilfs_bmap_assign() assigns the block number @blocknr to the
324 * buffer specified by @bh.
325 *
326 * Return Value: On success, 0 is returned and the buffer head of a newly
327 * create buffer and the block information associated with the buffer are
328 * stored in the place pointed by @bh and @binfo, respectively. On error, one
329 * of the following negative error codes is returned.
330 *
331 * %-EIO - I/O error.
332 *
333 * %-ENOMEM - Insufficient amount of memory available.
334 */
335int nilfs_bmap_assign(struct nilfs_bmap *bmap,
336 struct buffer_head **bh,
337 unsigned long blocknr,
338 union nilfs_binfo *binfo)
339{
340 int ret;
341
342 down_write(&bmap->b_sem);
8acfbf09 343 ret = bmap->b_ops->bop_assign(bmap, bh, blocknr, binfo);
bdb265ea
KS
344 up_write(&bmap->b_sem);
345 return ret;
346}
347
348/**
349 * nilfs_bmap_mark - mark block dirty
350 * @bmap: bmap
351 * @key: key
352 * @level: level
353 *
354 * Description: nilfs_bmap_mark() marks the block specified by @key and @level
355 * as dirty.
356 *
357 * Return Value: On success, 0 is returned. On error, one of the following
358 * negative error codes is returned.
359 *
360 * %-EIO - I/O error.
361 *
362 * %-ENOMEM - Insufficient amount of memory available.
363 */
364int nilfs_bmap_mark(struct nilfs_bmap *bmap, __u64 key, int level)
365{
366 int ret;
367
368 if (bmap->b_ops->bop_mark == NULL)
369 return 0;
370
371 down_write(&bmap->b_sem);
8acfbf09 372 ret = bmap->b_ops->bop_mark(bmap, key, level);
bdb265ea
KS
373 up_write(&bmap->b_sem);
374 return ret;
375}
376
377/**
378 * nilfs_bmap_test_and_clear_dirty - test and clear a bmap dirty state
379 * @bmap: bmap
380 *
381 * Description: nilfs_test_and_clear() is the atomic operation to test and
382 * clear the dirty state of @bmap.
383 *
384 * Return Value: 1 is returned if @bmap is dirty, or 0 if clear.
385 */
386int nilfs_bmap_test_and_clear_dirty(struct nilfs_bmap *bmap)
387{
388 int ret;
389
390 down_write(&bmap->b_sem);
391 ret = nilfs_bmap_dirty(bmap);
392 nilfs_bmap_clear_dirty(bmap);
393 up_write(&bmap->b_sem);
394 return ret;
395}
396
397
398/*
399 * Internal use only
400 */
401
402void nilfs_bmap_add_blocks(const struct nilfs_bmap *bmap, int n)
403{
404 inode_add_bytes(bmap->b_inode, (1 << bmap->b_inode->i_blkbits) * n);
405 if (NILFS_MDT(bmap->b_inode))
406 nilfs_mdt_mark_dirty(bmap->b_inode);
407 else
408 mark_inode_dirty(bmap->b_inode);
409}
410
411void nilfs_bmap_sub_blocks(const struct nilfs_bmap *bmap, int n)
412{
413 inode_sub_bytes(bmap->b_inode, (1 << bmap->b_inode->i_blkbits) * n);
414 if (NILFS_MDT(bmap->b_inode))
415 nilfs_mdt_mark_dirty(bmap->b_inode);
416 else
417 mark_inode_dirty(bmap->b_inode);
418}
419
bdb265ea
KS
420__u64 nilfs_bmap_data_get_key(const struct nilfs_bmap *bmap,
421 const struct buffer_head *bh)
422{
423 struct buffer_head *pbh;
424 __u64 key;
425
426 key = page_index(bh->b_page) << (PAGE_CACHE_SHIFT -
427 bmap->b_inode->i_blkbits);
428 for (pbh = page_buffers(bh->b_page); pbh != bh;
429 pbh = pbh->b_this_page, key++);
430
431 return key;
432}
433
434__u64 nilfs_bmap_find_target_seq(const struct nilfs_bmap *bmap, __u64 key)
435{
436 __s64 diff;
437
438 diff = key - bmap->b_last_allocated_key;
439 if ((nilfs_bmap_keydiff_abs(diff) < NILFS_INODE_BMAP_SIZE) &&
440 (bmap->b_last_allocated_ptr != NILFS_BMAP_INVALID_PTR) &&
441 (bmap->b_last_allocated_ptr + diff > 0))
442 return bmap->b_last_allocated_ptr + diff;
443 else
444 return NILFS_BMAP_INVALID_PTR;
445}
446
447static struct inode *nilfs_bmap_get_dat(const struct nilfs_bmap *bmap)
448{
449 return nilfs_dat_inode(NILFS_I_NILFS(bmap->b_inode));
450}
451
452#define NILFS_BMAP_GROUP_DIV 8
453__u64 nilfs_bmap_find_target_in_group(const struct nilfs_bmap *bmap)
454{
455 struct inode *dat = nilfs_bmap_get_dat(bmap);
456 unsigned long entries_per_group = nilfs_palloc_entries_per_group(dat);
457 unsigned long group = bmap->b_inode->i_ino / entries_per_group;
458
459 return group * entries_per_group +
460 (bmap->b_inode->i_ino % NILFS_BMAP_GROUP_DIV) *
461 (entries_per_group / NILFS_BMAP_GROUP_DIV);
462}
463
464static int nilfs_bmap_prepare_alloc_v(struct nilfs_bmap *bmap,
465 union nilfs_bmap_ptr_req *req)
466{
467 return nilfs_dat_prepare_alloc(nilfs_bmap_get_dat(bmap), &req->bpr_req);
468}
469
470static void nilfs_bmap_commit_alloc_v(struct nilfs_bmap *bmap,
471 union nilfs_bmap_ptr_req *req)
472{
473 nilfs_dat_commit_alloc(nilfs_bmap_get_dat(bmap), &req->bpr_req);
474}
475
476static void nilfs_bmap_abort_alloc_v(struct nilfs_bmap *bmap,
477 union nilfs_bmap_ptr_req *req)
478{
479 nilfs_dat_abort_alloc(nilfs_bmap_get_dat(bmap), &req->bpr_req);
480}
481
d97a51a7
RK
482int nilfs_bmap_start_v(struct nilfs_bmap *bmap, union nilfs_bmap_ptr_req *req,
483 sector_t blocknr)
bdb265ea 484{
d97a51a7
RK
485 struct inode *dat = nilfs_bmap_get_dat(bmap);
486 int ret;
bdb265ea 487
d97a51a7
RK
488 ret = nilfs_dat_prepare_start(dat, &req->bpr_req);
489 if (likely(!ret))
490 nilfs_dat_commit_start(dat, &req->bpr_req, blocknr);
491 return ret;
bdb265ea
KS
492}
493
494static int nilfs_bmap_prepare_end_v(struct nilfs_bmap *bmap,
495 union nilfs_bmap_ptr_req *req)
496{
497 return nilfs_dat_prepare_end(nilfs_bmap_get_dat(bmap), &req->bpr_req);
498}
499
500static void nilfs_bmap_commit_end_v(struct nilfs_bmap *bmap,
501 union nilfs_bmap_ptr_req *req)
502{
503 nilfs_dat_commit_end(nilfs_bmap_get_dat(bmap), &req->bpr_req, 0);
504}
505
506static void nilfs_bmap_commit_end_vmdt(struct nilfs_bmap *bmap,
507 union nilfs_bmap_ptr_req *req)
508{
509 nilfs_dat_commit_end(nilfs_bmap_get_dat(bmap), &req->bpr_req, 1);
510}
511
512static void nilfs_bmap_abort_end_v(struct nilfs_bmap *bmap,
513 union nilfs_bmap_ptr_req *req)
514{
515 nilfs_dat_abort_end(nilfs_bmap_get_dat(bmap), &req->bpr_req);
516}
517
518int nilfs_bmap_move_v(const struct nilfs_bmap *bmap, __u64 vblocknr,
519 sector_t blocknr)
520{
521 return nilfs_dat_move(nilfs_bmap_get_dat(bmap), vblocknr, blocknr);
522}
523
524int nilfs_bmap_mark_dirty(const struct nilfs_bmap *bmap, __u64 vblocknr)
525{
526 return nilfs_dat_mark_dirty(nilfs_bmap_get_dat(bmap), vblocknr);
527}
528
529int nilfs_bmap_prepare_update(struct nilfs_bmap *bmap,
530 union nilfs_bmap_ptr_req *oldreq,
531 union nilfs_bmap_ptr_req *newreq)
532{
533 int ret;
534
8acfbf09 535 ret = bmap->b_pops->bpop_prepare_end_ptr(bmap, oldreq);
bdb265ea
KS
536 if (ret < 0)
537 return ret;
8acfbf09 538 ret = bmap->b_pops->bpop_prepare_alloc_ptr(bmap, newreq);
bdb265ea 539 if (ret < 0)
8acfbf09 540 bmap->b_pops->bpop_abort_end_ptr(bmap, oldreq);
bdb265ea
KS
541
542 return ret;
543}
544
545void nilfs_bmap_commit_update(struct nilfs_bmap *bmap,
546 union nilfs_bmap_ptr_req *oldreq,
547 union nilfs_bmap_ptr_req *newreq)
548{
8acfbf09
PE
549 bmap->b_pops->bpop_commit_end_ptr(bmap, oldreq);
550 bmap->b_pops->bpop_commit_alloc_ptr(bmap, newreq);
bdb265ea
KS
551}
552
553void nilfs_bmap_abort_update(struct nilfs_bmap *bmap,
554 union nilfs_bmap_ptr_req *oldreq,
555 union nilfs_bmap_ptr_req *newreq)
556{
8acfbf09
PE
557 bmap->b_pops->bpop_abort_end_ptr(bmap, oldreq);
558 bmap->b_pops->bpop_abort_alloc_ptr(bmap, newreq);
bdb265ea
KS
559}
560
561static int nilfs_bmap_translate_v(const struct nilfs_bmap *bmap, __u64 ptr,
562 __u64 *ptrp)
563{
564 sector_t blocknr;
565 int ret;
566
567 ret = nilfs_dat_translate(nilfs_bmap_get_dat(bmap), ptr, &blocknr);
568 if (ret < 0)
569 return ret;
570 if (ptrp != NULL)
571 *ptrp = blocknr;
572 return 0;
573}
574
575static int nilfs_bmap_prepare_alloc_p(struct nilfs_bmap *bmap,
576 union nilfs_bmap_ptr_req *req)
577{
578 /* ignore target ptr */
579 req->bpr_ptr = bmap->b_last_allocated_ptr++;
580 return 0;
581}
582
583static void nilfs_bmap_commit_alloc_p(struct nilfs_bmap *bmap,
584 union nilfs_bmap_ptr_req *req)
585{
586 /* do nothing */
587}
588
589static void nilfs_bmap_abort_alloc_p(struct nilfs_bmap *bmap,
590 union nilfs_bmap_ptr_req *req)
591{
592 bmap->b_last_allocated_ptr--;
593}
594
595static const struct nilfs_bmap_ptr_operations nilfs_bmap_ptr_ops_v = {
596 .bpop_prepare_alloc_ptr = nilfs_bmap_prepare_alloc_v,
597 .bpop_commit_alloc_ptr = nilfs_bmap_commit_alloc_v,
598 .bpop_abort_alloc_ptr = nilfs_bmap_abort_alloc_v,
bdb265ea
KS
599 .bpop_prepare_end_ptr = nilfs_bmap_prepare_end_v,
600 .bpop_commit_end_ptr = nilfs_bmap_commit_end_v,
601 .bpop_abort_end_ptr = nilfs_bmap_abort_end_v,
602
603 .bpop_translate = nilfs_bmap_translate_v,
604};
605
606static const struct nilfs_bmap_ptr_operations nilfs_bmap_ptr_ops_vmdt = {
607 .bpop_prepare_alloc_ptr = nilfs_bmap_prepare_alloc_v,
608 .bpop_commit_alloc_ptr = nilfs_bmap_commit_alloc_v,
609 .bpop_abort_alloc_ptr = nilfs_bmap_abort_alloc_v,
bdb265ea
KS
610 .bpop_prepare_end_ptr = nilfs_bmap_prepare_end_v,
611 .bpop_commit_end_ptr = nilfs_bmap_commit_end_vmdt,
612 .bpop_abort_end_ptr = nilfs_bmap_abort_end_v,
613
614 .bpop_translate = nilfs_bmap_translate_v,
615};
616
617static const struct nilfs_bmap_ptr_operations nilfs_bmap_ptr_ops_p = {
618 .bpop_prepare_alloc_ptr = nilfs_bmap_prepare_alloc_p,
619 .bpop_commit_alloc_ptr = nilfs_bmap_commit_alloc_p,
620 .bpop_abort_alloc_ptr = nilfs_bmap_abort_alloc_p,
bdb265ea
KS
621 .bpop_prepare_end_ptr = NULL,
622 .bpop_commit_end_ptr = NULL,
623 .bpop_abort_end_ptr = NULL,
624
625 .bpop_translate = NULL,
626};
627
628static const struct nilfs_bmap_ptr_operations nilfs_bmap_ptr_ops_gc = {
629 .bpop_prepare_alloc_ptr = NULL,
630 .bpop_commit_alloc_ptr = NULL,
631 .bpop_abort_alloc_ptr = NULL,
bdb265ea
KS
632 .bpop_prepare_end_ptr = NULL,
633 .bpop_commit_end_ptr = NULL,
634 .bpop_abort_end_ptr = NULL,
635
636 .bpop_translate = NULL,
637};
638
bcb48891
RK
639static struct lock_class_key nilfs_bmap_dat_lock_key;
640
bdb265ea
KS
641/**
642 * nilfs_bmap_read - read a bmap from an inode
643 * @bmap: bmap
644 * @raw_inode: on-disk inode
645 *
646 * Description: nilfs_bmap_read() initializes the bmap @bmap.
647 *
648 * Return Value: On success, 0 is returned. On error, the following negative
649 * error code is returned.
650 *
651 * %-ENOMEM - Insufficient amount of memory available.
652 */
653int nilfs_bmap_read(struct nilfs_bmap *bmap, struct nilfs_inode *raw_inode)
654{
655 if (raw_inode == NULL)
656 memset(bmap->b_u.u_data, 0, NILFS_BMAP_SIZE);
657 else
658 memcpy(bmap->b_u.u_data, raw_inode->i_bmap, NILFS_BMAP_SIZE);
659
660 init_rwsem(&bmap->b_sem);
661 bmap->b_state = 0;
662 bmap->b_inode = &NILFS_BMAP_I(bmap)->vfs_inode;
663 switch (bmap->b_inode->i_ino) {
664 case NILFS_DAT_INO:
665 bmap->b_pops = &nilfs_bmap_ptr_ops_p;
666 bmap->b_last_allocated_key = 0; /* XXX: use macro */
667 bmap->b_last_allocated_ptr = NILFS_BMAP_NEW_PTR_INIT;
bcb48891 668 lockdep_set_class(&bmap->b_sem, &nilfs_bmap_dat_lock_key);
bdb265ea
KS
669 break;
670 case NILFS_CPFILE_INO:
671 case NILFS_SUFILE_INO:
672 bmap->b_pops = &nilfs_bmap_ptr_ops_vmdt;
673 bmap->b_last_allocated_key = 0; /* XXX: use macro */
674 bmap->b_last_allocated_ptr = NILFS_BMAP_INVALID_PTR;
675 break;
676 default:
677 bmap->b_pops = &nilfs_bmap_ptr_ops_v;
678 bmap->b_last_allocated_key = 0; /* XXX: use macro */
679 bmap->b_last_allocated_ptr = NILFS_BMAP_INVALID_PTR;
680 break;
681 }
682
683 return (bmap->b_u.u_flags & NILFS_BMAP_LARGE) ?
684 nilfs_btree_init(bmap,
685 NILFS_BMAP_LARGE_LOW,
686 NILFS_BMAP_LARGE_HIGH) :
687 nilfs_direct_init(bmap,
688 NILFS_BMAP_SMALL_LOW,
689 NILFS_BMAP_SMALL_HIGH);
690}
691
692/**
693 * nilfs_bmap_write - write back a bmap to an inode
694 * @bmap: bmap
695 * @raw_inode: on-disk inode
696 *
697 * Description: nilfs_bmap_write() stores @bmap in @raw_inode.
698 */
699void nilfs_bmap_write(struct nilfs_bmap *bmap, struct nilfs_inode *raw_inode)
700{
701 down_write(&bmap->b_sem);
702 memcpy(raw_inode->i_bmap, bmap->b_u.u_data,
703 NILFS_INODE_BMAP_SIZE * sizeof(__le64));
704 if (bmap->b_inode->i_ino == NILFS_DAT_INO)
705 bmap->b_last_allocated_ptr = NILFS_BMAP_NEW_PTR_INIT;
706
707 up_write(&bmap->b_sem);
708}
709
710void nilfs_bmap_init_gc(struct nilfs_bmap *bmap)
711{
712 memset(&bmap->b_u, 0, NILFS_BMAP_SIZE);
713 init_rwsem(&bmap->b_sem);
714 bmap->b_inode = &NILFS_BMAP_I(bmap)->vfs_inode;
715 bmap->b_pops = &nilfs_bmap_ptr_ops_gc;
716 bmap->b_last_allocated_key = 0;
717 bmap->b_last_allocated_ptr = NILFS_BMAP_INVALID_PTR;
718 bmap->b_state = 0;
719 nilfs_btree_init_gc(bmap);
720}
721
722void nilfs_bmap_init_gcdat(struct nilfs_bmap *gcbmap, struct nilfs_bmap *bmap)
723{
724 memcpy(gcbmap, bmap, sizeof(union nilfs_bmap_union));
725 init_rwsem(&gcbmap->b_sem);
bcb48891 726 lockdep_set_class(&bmap->b_sem, &nilfs_bmap_dat_lock_key);
bdb265ea
KS
727 gcbmap->b_inode = &NILFS_BMAP_I(gcbmap)->vfs_inode;
728}
729
730void nilfs_bmap_commit_gcdat(struct nilfs_bmap *gcbmap, struct nilfs_bmap *bmap)
731{
732 memcpy(bmap, gcbmap, sizeof(union nilfs_bmap_union));
733 init_rwsem(&bmap->b_sem);
bcb48891 734 lockdep_set_class(&bmap->b_sem, &nilfs_bmap_dat_lock_key);
bdb265ea
KS
735 bmap->b_inode = &NILFS_BMAP_I(bmap)->vfs_inode;
736}