]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blame - fs/nilfs2/bmap.h
nilfs2: avoid bare use of 'unsigned'
[mirror_ubuntu-zesty-kernel.git] / fs / nilfs2 / bmap.h
CommitLineData
bdb265ea
KS
1/*
2 * bmap.h - 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 *
4b420ab4 16 * Written by Koji Sato.
bdb265ea
KS
17 */
18
19#ifndef _NILFS_BMAP_H
20#define _NILFS_BMAP_H
21
22#include <linux/types.h>
23#include <linux/fs.h>
24#include <linux/buffer_head.h>
25#include <linux/nilfs2_fs.h>
26#include "alloc.h"
2e0c2c73 27#include "dat.h"
bdb265ea
KS
28
29#define NILFS_BMAP_INVALID_PTR 0
30
bdb265ea
KS
31#define nilfs_bmap_keydiff_abs(diff) ((diff) < 0 ? -(diff) : (diff))
32
33
34struct nilfs_bmap;
35
36/**
37 * union nilfs_bmap_ptr_req - request for bmap ptr
38 * @bpr_ptr: bmap pointer
39 * @bpr_req: request for persistent allocator
40 */
41union nilfs_bmap_ptr_req {
42 __u64 bpr_ptr;
43 struct nilfs_palloc_req bpr_req;
44};
45
46/**
47 * struct nilfs_bmap_stats - bmap statistics
48 * @bs_nblocks: number of blocks created or deleted
49 */
50struct nilfs_bmap_stats {
51 unsigned int bs_nblocks;
52};
53
54/**
55 * struct nilfs_bmap_operations - bmap operation table
56 */
57struct nilfs_bmap_operations {
58 int (*bop_lookup)(const struct nilfs_bmap *, __u64, int, __u64 *);
c3a7abf0 59 int (*bop_lookup_contig)(const struct nilfs_bmap *, __u64, __u64 *,
0c6c44cb 60 unsigned int);
bdb265ea
KS
61 int (*bop_insert)(struct nilfs_bmap *, __u64, __u64);
62 int (*bop_delete)(struct nilfs_bmap *, __u64);
63 void (*bop_clear)(struct nilfs_bmap *);
64
583ada47 65 int (*bop_propagate)(struct nilfs_bmap *, struct buffer_head *);
bdb265ea
KS
66 void (*bop_lookup_dirty_buffers)(struct nilfs_bmap *,
67 struct list_head *);
68
69 int (*bop_assign)(struct nilfs_bmap *,
70 struct buffer_head **,
71 sector_t,
72 union nilfs_binfo *);
73 int (*bop_mark)(struct nilfs_bmap *, __u64, int);
74
5b20384f 75 int (*bop_seek_key)(const struct nilfs_bmap *, __u64, __u64 *);
bdb265ea 76 int (*bop_last_key)(const struct nilfs_bmap *, __u64 *);
5b20384f
RK
77
78 /* The following functions are internal use only. */
bdb265ea
KS
79 int (*bop_check_insert)(const struct nilfs_bmap *, __u64);
80 int (*bop_check_delete)(struct nilfs_bmap *, __u64);
81 int (*bop_gather_data)(struct nilfs_bmap *, __u64 *, __u64 *, int);
82};
83
84
bdb265ea
KS
85#define NILFS_BMAP_SIZE (NILFS_INODE_BMAP_SIZE * sizeof(__le64))
86#define NILFS_BMAP_KEY_BIT (sizeof(unsigned long) * 8 /* CHAR_BIT */)
87#define NILFS_BMAP_NEW_PTR_INIT \
88 (1UL << (sizeof(unsigned long) * 8 /* CHAR_BIT */ - 1))
89
90static inline int nilfs_bmap_is_new_ptr(unsigned long ptr)
91{
92 return !!(ptr & NILFS_BMAP_NEW_PTR_INIT);
93}
94
95
96/**
97 * struct nilfs_bmap - bmap structure
98 * @b_u: raw data
99 * @b_sem: semaphore
100 * @b_inode: owner of bmap
101 * @b_ops: bmap operation table
bdb265ea
KS
102 * @b_last_allocated_key: last allocated key for data block
103 * @b_last_allocated_ptr: last allocated ptr for data block
d4b96157 104 * @b_ptr_type: pointer type
bdb265ea 105 * @b_state: state
5ad2686e 106 * @b_nchildren_per_block: maximum number of child nodes for non-root nodes
bdb265ea
KS
107 */
108struct nilfs_bmap {
109 union {
110 __u8 u_flags;
111 __le64 u_data[NILFS_BMAP_SIZE / sizeof(__le64)];
112 } b_u;
113 struct rw_semaphore b_sem;
114 struct inode *b_inode;
115 const struct nilfs_bmap_operations *b_ops;
bdb265ea
KS
116 __u64 b_last_allocated_key;
117 __u64 b_last_allocated_ptr;
d4b96157 118 int b_ptr_type;
bdb265ea 119 int b_state;
5ad2686e 120 __u16 b_nchildren_per_block;
bdb265ea
KS
121};
122
d4b96157
RK
123/* pointer type */
124#define NILFS_BMAP_PTR_P 0 /* physical block number (i.e. LBN) */
125#define NILFS_BMAP_PTR_VS 1 /* virtual block number (single
126 version) */
127#define NILFS_BMAP_PTR_VM 2 /* virtual block number (has multiple
128 versions) */
129#define NILFS_BMAP_PTR_U (-1) /* never perform pointer operations */
130
131#define NILFS_BMAP_USE_VBN(bmap) ((bmap)->b_ptr_type > 0)
132
bdb265ea
KS
133/* state */
134#define NILFS_BMAP_DIRTY 0x00000001
135
f5974c8f
VD
136/**
137 * struct nilfs_bmap_store - shadow copy of bmap state
138 * @data: cached raw block mapping of on-disk inode
139 * @last_allocated_key: cached value of last allocated key for data block
140 * @last_allocated_ptr: cached value of last allocated ptr for data block
141 * @state: cached value of state field of bmap structure
142 */
a8070dd3
RK
143struct nilfs_bmap_store {
144 __le64 data[NILFS_BMAP_SIZE / sizeof(__le64)];
145 __u64 last_allocated_key;
146 __u64 last_allocated_ptr;
147 int state;
148};
bdb265ea
KS
149
150int nilfs_bmap_test_and_clear_dirty(struct nilfs_bmap *);
151int nilfs_bmap_read(struct nilfs_bmap *, struct nilfs_inode *);
152void nilfs_bmap_write(struct nilfs_bmap *, struct nilfs_inode *);
0c6c44cb 153int nilfs_bmap_lookup_contig(struct nilfs_bmap *, __u64, __u64 *, unsigned int);
3568a13f
RK
154int nilfs_bmap_insert(struct nilfs_bmap *bmap, __u64 key, unsigned long rec);
155int nilfs_bmap_delete(struct nilfs_bmap *bmap, __u64 key);
5b20384f 156int nilfs_bmap_seek_key(struct nilfs_bmap *bmap, __u64 start, __u64 *keyp);
3568a13f
RK
157int nilfs_bmap_last_key(struct nilfs_bmap *bmap, __u64 *keyp);
158int nilfs_bmap_truncate(struct nilfs_bmap *bmap, __u64 key);
bdb265ea
KS
159void nilfs_bmap_clear(struct nilfs_bmap *);
160int nilfs_bmap_propagate(struct nilfs_bmap *, struct buffer_head *);
161void nilfs_bmap_lookup_dirty_buffers(struct nilfs_bmap *, struct list_head *);
162int nilfs_bmap_assign(struct nilfs_bmap *, struct buffer_head **,
163 unsigned long, union nilfs_binfo *);
164int nilfs_bmap_lookup_at_level(struct nilfs_bmap *, __u64, int, __u64 *);
165int nilfs_bmap_mark(struct nilfs_bmap *, __u64, int);
166
167void nilfs_bmap_init_gc(struct nilfs_bmap *);
bdb265ea 168
a8070dd3
RK
169void nilfs_bmap_save(const struct nilfs_bmap *, struct nilfs_bmap_store *);
170void nilfs_bmap_restore(struct nilfs_bmap *, const struct nilfs_bmap_store *);
bdb265ea 171
0f3fe33b
RK
172static inline int nilfs_bmap_lookup(struct nilfs_bmap *bmap, __u64 key,
173 __u64 *ptr)
174{
175 return nilfs_bmap_lookup_at_level(bmap, key, 1, ptr);
176}
177
bdb265ea
KS
178/*
179 * Internal use only
180 */
c3a7abf0 181struct inode *nilfs_bmap_get_dat(const struct nilfs_bmap *);
d4b96157
RK
182
183static inline int nilfs_bmap_prepare_alloc_ptr(struct nilfs_bmap *bmap,
2e0c2c73
RK
184 union nilfs_bmap_ptr_req *req,
185 struct inode *dat)
d4b96157 186{
2e0c2c73
RK
187 if (dat)
188 return nilfs_dat_prepare_alloc(dat, &req->bpr_req);
d4b96157
RK
189 /* ignore target ptr */
190 req->bpr_ptr = bmap->b_last_allocated_ptr++;
191 return 0;
192}
193
194static inline void nilfs_bmap_commit_alloc_ptr(struct nilfs_bmap *bmap,
2e0c2c73
RK
195 union nilfs_bmap_ptr_req *req,
196 struct inode *dat)
d4b96157 197{
2e0c2c73
RK
198 if (dat)
199 nilfs_dat_commit_alloc(dat, &req->bpr_req);
d4b96157
RK
200}
201
202static inline void nilfs_bmap_abort_alloc_ptr(struct nilfs_bmap *bmap,
2e0c2c73
RK
203 union nilfs_bmap_ptr_req *req,
204 struct inode *dat)
d4b96157 205{
2e0c2c73
RK
206 if (dat)
207 nilfs_dat_abort_alloc(dat, &req->bpr_req);
d4b96157
RK
208 else
209 bmap->b_last_allocated_ptr--;
210}
211
d4b96157 212static inline int nilfs_bmap_prepare_end_ptr(struct nilfs_bmap *bmap,
2e0c2c73
RK
213 union nilfs_bmap_ptr_req *req,
214 struct inode *dat)
d4b96157 215{
2e0c2c73 216 return dat ? nilfs_dat_prepare_end(dat, &req->bpr_req) : 0;
d4b96157
RK
217}
218
219static inline void nilfs_bmap_commit_end_ptr(struct nilfs_bmap *bmap,
2e0c2c73
RK
220 union nilfs_bmap_ptr_req *req,
221 struct inode *dat)
d4b96157 222{
2e0c2c73
RK
223 if (dat)
224 nilfs_dat_commit_end(dat, &req->bpr_req,
225 bmap->b_ptr_type == NILFS_BMAP_PTR_VS);
d4b96157
RK
226}
227
228static inline void nilfs_bmap_abort_end_ptr(struct nilfs_bmap *bmap,
2e0c2c73
RK
229 union nilfs_bmap_ptr_req *req,
230 struct inode *dat)
d4b96157 231{
2e0c2c73
RK
232 if (dat)
233 nilfs_dat_abort_end(dat, &req->bpr_req);
d4b96157 234}
bdb265ea 235
dc935be2
RK
236static inline void nilfs_bmap_set_target_v(struct nilfs_bmap *bmap, __u64 key,
237 __u64 ptr)
238{
239 bmap->b_last_allocated_key = key;
240 bmap->b_last_allocated_ptr = ptr;
241}
242
bdb265ea
KS
243__u64 nilfs_bmap_data_get_key(const struct nilfs_bmap *,
244 const struct buffer_head *);
245
246__u64 nilfs_bmap_find_target_seq(const struct nilfs_bmap *, __u64);
247__u64 nilfs_bmap_find_target_in_group(const struct nilfs_bmap *);
248
bdb265ea 249
bdb265ea
KS
250/* Assume that bmap semaphore is locked. */
251static inline int nilfs_bmap_dirty(const struct nilfs_bmap *bmap)
252{
253 return !!(bmap->b_state & NILFS_BMAP_DIRTY);
254}
255
256/* Assume that bmap semaphore is locked. */
257static inline void nilfs_bmap_set_dirty(struct nilfs_bmap *bmap)
258{
259 bmap->b_state |= NILFS_BMAP_DIRTY;
260}
261
262/* Assume that bmap semaphore is locked. */
263static inline void nilfs_bmap_clear_dirty(struct nilfs_bmap *bmap)
264{
265 bmap->b_state &= ~NILFS_BMAP_DIRTY;
266}
267
268
269#define NILFS_BMAP_LARGE 0x1
270
271#define NILFS_BMAP_SMALL_LOW NILFS_DIRECT_KEY_MIN
272#define NILFS_BMAP_SMALL_HIGH NILFS_DIRECT_KEY_MAX
273#define NILFS_BMAP_LARGE_LOW NILFS_BTREE_ROOT_NCHILDREN_MAX
274#define NILFS_BMAP_LARGE_HIGH NILFS_BTREE_KEY_MAX
275
276#endif /* _NILFS_BMAP_H */