Koji Sato | bdb265e | 2009-04-06 19:01:23 -0700 | [diff] [blame] | 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 | * |
| 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 | #ifndef _NILFS_BMAP_H |
| 24 | #define _NILFS_BMAP_H |
| 25 | |
| 26 | #include <linux/types.h> |
| 27 | #include <linux/fs.h> |
| 28 | #include <linux/buffer_head.h> |
| 29 | #include <linux/nilfs2_fs.h> |
| 30 | #include "alloc.h" |
Ryusuke Konishi | 2e0c2c7 | 2009-08-15 15:34:33 +0900 | [diff] [blame] | 31 | #include "dat.h" |
Koji Sato | bdb265e | 2009-04-06 19:01:23 -0700 | [diff] [blame] | 32 | |
| 33 | #define NILFS_BMAP_INVALID_PTR 0 |
| 34 | |
Koji Sato | bdb265e | 2009-04-06 19:01:23 -0700 | [diff] [blame] | 35 | #define nilfs_bmap_keydiff_abs(diff) ((diff) < 0 ? -(diff) : (diff)) |
| 36 | |
| 37 | |
| 38 | struct nilfs_bmap; |
| 39 | |
| 40 | /** |
| 41 | * union nilfs_bmap_ptr_req - request for bmap ptr |
| 42 | * @bpr_ptr: bmap pointer |
| 43 | * @bpr_req: request for persistent allocator |
| 44 | */ |
| 45 | union nilfs_bmap_ptr_req { |
| 46 | __u64 bpr_ptr; |
| 47 | struct nilfs_palloc_req bpr_req; |
| 48 | }; |
| 49 | |
| 50 | /** |
| 51 | * struct nilfs_bmap_stats - bmap statistics |
| 52 | * @bs_nblocks: number of blocks created or deleted |
| 53 | */ |
| 54 | struct nilfs_bmap_stats { |
| 55 | unsigned int bs_nblocks; |
| 56 | }; |
| 57 | |
| 58 | /** |
| 59 | * struct nilfs_bmap_operations - bmap operation table |
| 60 | */ |
| 61 | struct nilfs_bmap_operations { |
| 62 | int (*bop_lookup)(const struct nilfs_bmap *, __u64, int, __u64 *); |
Ryusuke Konishi | c3a7abf | 2009-05-25 02:47:14 +0900 | [diff] [blame] | 63 | int (*bop_lookup_contig)(const struct nilfs_bmap *, __u64, __u64 *, |
| 64 | unsigned); |
Koji Sato | bdb265e | 2009-04-06 19:01:23 -0700 | [diff] [blame] | 65 | int (*bop_insert)(struct nilfs_bmap *, __u64, __u64); |
| 66 | int (*bop_delete)(struct nilfs_bmap *, __u64); |
| 67 | void (*bop_clear)(struct nilfs_bmap *); |
| 68 | |
| 69 | int (*bop_propagate)(const struct nilfs_bmap *, struct buffer_head *); |
| 70 | void (*bop_lookup_dirty_buffers)(struct nilfs_bmap *, |
| 71 | struct list_head *); |
| 72 | |
| 73 | int (*bop_assign)(struct nilfs_bmap *, |
| 74 | struct buffer_head **, |
| 75 | sector_t, |
| 76 | union nilfs_binfo *); |
| 77 | int (*bop_mark)(struct nilfs_bmap *, __u64, int); |
| 78 | |
| 79 | /* The following functions are internal use only. */ |
| 80 | int (*bop_last_key)(const struct nilfs_bmap *, __u64 *); |
| 81 | int (*bop_check_insert)(const struct nilfs_bmap *, __u64); |
| 82 | int (*bop_check_delete)(struct nilfs_bmap *, __u64); |
| 83 | int (*bop_gather_data)(struct nilfs_bmap *, __u64 *, __u64 *, int); |
| 84 | }; |
| 85 | |
| 86 | |
Koji Sato | bdb265e | 2009-04-06 19:01:23 -0700 | [diff] [blame] | 87 | #define NILFS_BMAP_SIZE (NILFS_INODE_BMAP_SIZE * sizeof(__le64)) |
| 88 | #define NILFS_BMAP_KEY_BIT (sizeof(unsigned long) * 8 /* CHAR_BIT */) |
| 89 | #define NILFS_BMAP_NEW_PTR_INIT \ |
| 90 | (1UL << (sizeof(unsigned long) * 8 /* CHAR_BIT */ - 1)) |
| 91 | |
| 92 | static inline int nilfs_bmap_is_new_ptr(unsigned long ptr) |
| 93 | { |
| 94 | return !!(ptr & NILFS_BMAP_NEW_PTR_INIT); |
| 95 | } |
| 96 | |
| 97 | |
| 98 | /** |
| 99 | * struct nilfs_bmap - bmap structure |
| 100 | * @b_u: raw data |
| 101 | * @b_sem: semaphore |
| 102 | * @b_inode: owner of bmap |
| 103 | * @b_ops: bmap operation table |
Koji Sato | bdb265e | 2009-04-06 19:01:23 -0700 | [diff] [blame] | 104 | * @b_last_allocated_key: last allocated key for data block |
| 105 | * @b_last_allocated_ptr: last allocated ptr for data block |
Ryusuke Konishi | d4b9615 | 2009-05-24 03:25:44 +0900 | [diff] [blame] | 106 | * @b_ptr_type: pointer type |
Koji Sato | bdb265e | 2009-04-06 19:01:23 -0700 | [diff] [blame] | 107 | * @b_state: state |
| 108 | */ |
| 109 | struct nilfs_bmap { |
| 110 | union { |
| 111 | __u8 u_flags; |
| 112 | __le64 u_data[NILFS_BMAP_SIZE / sizeof(__le64)]; |
| 113 | } b_u; |
| 114 | struct rw_semaphore b_sem; |
| 115 | struct inode *b_inode; |
| 116 | const struct nilfs_bmap_operations *b_ops; |
Koji Sato | bdb265e | 2009-04-06 19:01:23 -0700 | [diff] [blame] | 117 | __u64 b_last_allocated_key; |
| 118 | __u64 b_last_allocated_ptr; |
Ryusuke Konishi | d4b9615 | 2009-05-24 03:25:44 +0900 | [diff] [blame] | 119 | int b_ptr_type; |
Koji Sato | bdb265e | 2009-04-06 19:01:23 -0700 | [diff] [blame] | 120 | int b_state; |
| 121 | }; |
| 122 | |
Ryusuke Konishi | d4b9615 | 2009-05-24 03:25:44 +0900 | [diff] [blame] | 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 | |
Koji Sato | bdb265e | 2009-04-06 19:01:23 -0700 | [diff] [blame] | 133 | /* state */ |
| 134 | #define NILFS_BMAP_DIRTY 0x00000001 |
| 135 | |
| 136 | |
| 137 | int nilfs_bmap_test_and_clear_dirty(struct nilfs_bmap *); |
| 138 | int nilfs_bmap_read(struct nilfs_bmap *, struct nilfs_inode *); |
| 139 | void nilfs_bmap_write(struct nilfs_bmap *, struct nilfs_inode *); |
Ryusuke Konishi | c3a7abf | 2009-05-25 02:47:14 +0900 | [diff] [blame] | 140 | int nilfs_bmap_lookup_contig(struct nilfs_bmap *, __u64, __u64 *, unsigned); |
Koji Sato | bdb265e | 2009-04-06 19:01:23 -0700 | [diff] [blame] | 141 | int nilfs_bmap_insert(struct nilfs_bmap *, unsigned long, unsigned long); |
| 142 | int nilfs_bmap_delete(struct nilfs_bmap *, unsigned long); |
| 143 | int nilfs_bmap_last_key(struct nilfs_bmap *, unsigned long *); |
| 144 | int nilfs_bmap_truncate(struct nilfs_bmap *, unsigned long); |
| 145 | void nilfs_bmap_clear(struct nilfs_bmap *); |
| 146 | int nilfs_bmap_propagate(struct nilfs_bmap *, struct buffer_head *); |
| 147 | void nilfs_bmap_lookup_dirty_buffers(struct nilfs_bmap *, struct list_head *); |
| 148 | int nilfs_bmap_assign(struct nilfs_bmap *, struct buffer_head **, |
| 149 | unsigned long, union nilfs_binfo *); |
| 150 | int nilfs_bmap_lookup_at_level(struct nilfs_bmap *, __u64, int, __u64 *); |
| 151 | int nilfs_bmap_mark(struct nilfs_bmap *, __u64, int); |
| 152 | |
| 153 | void nilfs_bmap_init_gc(struct nilfs_bmap *); |
| 154 | void nilfs_bmap_init_gcdat(struct nilfs_bmap *, struct nilfs_bmap *); |
| 155 | void nilfs_bmap_commit_gcdat(struct nilfs_bmap *, struct nilfs_bmap *); |
| 156 | |
| 157 | |
Ryusuke Konishi | 0f3fe33 | 2009-08-15 02:29:28 +0900 | [diff] [blame] | 158 | static inline int nilfs_bmap_lookup(struct nilfs_bmap *bmap, __u64 key, |
| 159 | __u64 *ptr) |
| 160 | { |
| 161 | return nilfs_bmap_lookup_at_level(bmap, key, 1, ptr); |
| 162 | } |
| 163 | |
Koji Sato | bdb265e | 2009-04-06 19:01:23 -0700 | [diff] [blame] | 164 | /* |
| 165 | * Internal use only |
| 166 | */ |
Ryusuke Konishi | c3a7abf | 2009-05-25 02:47:14 +0900 | [diff] [blame] | 167 | struct inode *nilfs_bmap_get_dat(const struct nilfs_bmap *); |
Ryusuke Konishi | d4b9615 | 2009-05-24 03:25:44 +0900 | [diff] [blame] | 168 | |
| 169 | static inline int nilfs_bmap_prepare_alloc_ptr(struct nilfs_bmap *bmap, |
Ryusuke Konishi | 2e0c2c7 | 2009-08-15 15:34:33 +0900 | [diff] [blame] | 170 | union nilfs_bmap_ptr_req *req, |
| 171 | struct inode *dat) |
Ryusuke Konishi | d4b9615 | 2009-05-24 03:25:44 +0900 | [diff] [blame] | 172 | { |
Ryusuke Konishi | 2e0c2c7 | 2009-08-15 15:34:33 +0900 | [diff] [blame] | 173 | if (dat) |
| 174 | return nilfs_dat_prepare_alloc(dat, &req->bpr_req); |
Ryusuke Konishi | d4b9615 | 2009-05-24 03:25:44 +0900 | [diff] [blame] | 175 | /* ignore target ptr */ |
| 176 | req->bpr_ptr = bmap->b_last_allocated_ptr++; |
| 177 | return 0; |
| 178 | } |
| 179 | |
| 180 | static inline void nilfs_bmap_commit_alloc_ptr(struct nilfs_bmap *bmap, |
Ryusuke Konishi | 2e0c2c7 | 2009-08-15 15:34:33 +0900 | [diff] [blame] | 181 | union nilfs_bmap_ptr_req *req, |
| 182 | struct inode *dat) |
Ryusuke Konishi | d4b9615 | 2009-05-24 03:25:44 +0900 | [diff] [blame] | 183 | { |
Ryusuke Konishi | 2e0c2c7 | 2009-08-15 15:34:33 +0900 | [diff] [blame] | 184 | if (dat) |
| 185 | nilfs_dat_commit_alloc(dat, &req->bpr_req); |
Ryusuke Konishi | d4b9615 | 2009-05-24 03:25:44 +0900 | [diff] [blame] | 186 | } |
| 187 | |
| 188 | static inline void nilfs_bmap_abort_alloc_ptr(struct nilfs_bmap *bmap, |
Ryusuke Konishi | 2e0c2c7 | 2009-08-15 15:34:33 +0900 | [diff] [blame] | 189 | union nilfs_bmap_ptr_req *req, |
| 190 | struct inode *dat) |
Ryusuke Konishi | d4b9615 | 2009-05-24 03:25:44 +0900 | [diff] [blame] | 191 | { |
Ryusuke Konishi | 2e0c2c7 | 2009-08-15 15:34:33 +0900 | [diff] [blame] | 192 | if (dat) |
| 193 | nilfs_dat_abort_alloc(dat, &req->bpr_req); |
Ryusuke Konishi | d4b9615 | 2009-05-24 03:25:44 +0900 | [diff] [blame] | 194 | else |
| 195 | bmap->b_last_allocated_ptr--; |
| 196 | } |
| 197 | |
Ryusuke Konishi | d4b9615 | 2009-05-24 03:25:44 +0900 | [diff] [blame] | 198 | static inline int nilfs_bmap_prepare_end_ptr(struct nilfs_bmap *bmap, |
Ryusuke Konishi | 2e0c2c7 | 2009-08-15 15:34:33 +0900 | [diff] [blame] | 199 | union nilfs_bmap_ptr_req *req, |
| 200 | struct inode *dat) |
Ryusuke Konishi | d4b9615 | 2009-05-24 03:25:44 +0900 | [diff] [blame] | 201 | { |
Ryusuke Konishi | 2e0c2c7 | 2009-08-15 15:34:33 +0900 | [diff] [blame] | 202 | return dat ? nilfs_dat_prepare_end(dat, &req->bpr_req) : 0; |
Ryusuke Konishi | d4b9615 | 2009-05-24 03:25:44 +0900 | [diff] [blame] | 203 | } |
| 204 | |
| 205 | static inline void nilfs_bmap_commit_end_ptr(struct nilfs_bmap *bmap, |
Ryusuke Konishi | 2e0c2c7 | 2009-08-15 15:34:33 +0900 | [diff] [blame] | 206 | union nilfs_bmap_ptr_req *req, |
| 207 | struct inode *dat) |
Ryusuke Konishi | d4b9615 | 2009-05-24 03:25:44 +0900 | [diff] [blame] | 208 | { |
Ryusuke Konishi | 2e0c2c7 | 2009-08-15 15:34:33 +0900 | [diff] [blame] | 209 | if (dat) |
| 210 | nilfs_dat_commit_end(dat, &req->bpr_req, |
| 211 | bmap->b_ptr_type == NILFS_BMAP_PTR_VS); |
Ryusuke Konishi | d4b9615 | 2009-05-24 03:25:44 +0900 | [diff] [blame] | 212 | } |
| 213 | |
| 214 | static inline void nilfs_bmap_abort_end_ptr(struct nilfs_bmap *bmap, |
Ryusuke Konishi | 2e0c2c7 | 2009-08-15 15:34:33 +0900 | [diff] [blame] | 215 | union nilfs_bmap_ptr_req *req, |
| 216 | struct inode *dat) |
Ryusuke Konishi | d4b9615 | 2009-05-24 03:25:44 +0900 | [diff] [blame] | 217 | { |
Ryusuke Konishi | 2e0c2c7 | 2009-08-15 15:34:33 +0900 | [diff] [blame] | 218 | if (dat) |
| 219 | nilfs_dat_abort_end(dat, &req->bpr_req); |
Ryusuke Konishi | d4b9615 | 2009-05-24 03:25:44 +0900 | [diff] [blame] | 220 | } |
Koji Sato | bdb265e | 2009-04-06 19:01:23 -0700 | [diff] [blame] | 221 | |
Koji Sato | bdb265e | 2009-04-06 19:01:23 -0700 | [diff] [blame] | 222 | __u64 nilfs_bmap_data_get_key(const struct nilfs_bmap *, |
| 223 | const struct buffer_head *); |
| 224 | |
| 225 | __u64 nilfs_bmap_find_target_seq(const struct nilfs_bmap *, __u64); |
| 226 | __u64 nilfs_bmap_find_target_in_group(const struct nilfs_bmap *); |
| 227 | |
Koji Sato | bdb265e | 2009-04-06 19:01:23 -0700 | [diff] [blame] | 228 | void nilfs_bmap_add_blocks(const struct nilfs_bmap *, int); |
| 229 | void nilfs_bmap_sub_blocks(const struct nilfs_bmap *, int); |
| 230 | |
| 231 | |
Koji Sato | bdb265e | 2009-04-06 19:01:23 -0700 | [diff] [blame] | 232 | /* Assume that bmap semaphore is locked. */ |
| 233 | static inline int nilfs_bmap_dirty(const struct nilfs_bmap *bmap) |
| 234 | { |
| 235 | return !!(bmap->b_state & NILFS_BMAP_DIRTY); |
| 236 | } |
| 237 | |
| 238 | /* Assume that bmap semaphore is locked. */ |
| 239 | static inline void nilfs_bmap_set_dirty(struct nilfs_bmap *bmap) |
| 240 | { |
| 241 | bmap->b_state |= NILFS_BMAP_DIRTY; |
| 242 | } |
| 243 | |
| 244 | /* Assume that bmap semaphore is locked. */ |
| 245 | static inline void nilfs_bmap_clear_dirty(struct nilfs_bmap *bmap) |
| 246 | { |
| 247 | bmap->b_state &= ~NILFS_BMAP_DIRTY; |
| 248 | } |
| 249 | |
| 250 | |
| 251 | #define NILFS_BMAP_LARGE 0x1 |
| 252 | |
| 253 | #define NILFS_BMAP_SMALL_LOW NILFS_DIRECT_KEY_MIN |
| 254 | #define NILFS_BMAP_SMALL_HIGH NILFS_DIRECT_KEY_MAX |
| 255 | #define NILFS_BMAP_LARGE_LOW NILFS_BTREE_ROOT_NCHILDREN_MAX |
| 256 | #define NILFS_BMAP_LARGE_HIGH NILFS_BTREE_KEY_MAX |
| 257 | |
| 258 | #endif /* _NILFS_BMAP_H */ |