2 * direct.c - NILFS direct block pointer.
4 * Copyright (C) 2006-2008 Nippon Telegraph and Telephone Corporation.
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.
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.
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
20 * Written by Koji Sato <koji@osrg.net>.
23 #include <linux/errno.h>
30 static inline __le64
*nilfs_direct_dptrs(const struct nilfs_direct
*direct
)
33 ((struct nilfs_direct_node
*)direct
->d_bmap
.b_u
.u_data
+ 1);
37 nilfs_direct_get_ptr(const struct nilfs_direct
*direct
, __u64 key
)
39 return nilfs_bmap_dptr_to_ptr(*(nilfs_direct_dptrs(direct
) + key
));
42 static inline void nilfs_direct_set_ptr(struct nilfs_direct
*direct
,
45 *(nilfs_direct_dptrs(direct
) + key
) = nilfs_bmap_ptr_to_dptr(ptr
);
48 static int nilfs_direct_lookup(const struct nilfs_bmap
*bmap
,
49 __u64 key
, int level
, __u64
*ptrp
)
51 struct nilfs_direct
*direct
;
54 direct
= (struct nilfs_direct
*)bmap
;
55 if ((key
> NILFS_DIRECT_KEY_MAX
) ||
56 (level
!= 1) || /* XXX: use macro for level 1 */
57 ((ptr
= nilfs_direct_get_ptr(direct
, key
)) ==
58 NILFS_BMAP_INVALID_PTR
))
66 static int nilfs_direct_lookup_contig(const struct nilfs_bmap
*bmap
,
67 __u64 key
, __u64
*ptrp
,
70 struct nilfs_direct
*direct
= (struct nilfs_direct
*)bmap
;
71 struct inode
*dat
= NULL
;
76 if (key
> NILFS_DIRECT_KEY_MAX
||
77 (ptr
= nilfs_direct_get_ptr(direct
, key
)) ==
78 NILFS_BMAP_INVALID_PTR
)
81 if (NILFS_BMAP_USE_VBN(bmap
)) {
82 dat
= nilfs_bmap_get_dat(bmap
);
83 ret
= nilfs_dat_translate(dat
, ptr
, &blocknr
);
89 maxblocks
= min_t(unsigned, maxblocks
, NILFS_DIRECT_KEY_MAX
- key
+ 1);
90 for (cnt
= 1; cnt
< maxblocks
&&
91 (ptr2
= nilfs_direct_get_ptr(direct
, key
+ cnt
)) !=
92 NILFS_BMAP_INVALID_PTR
;
95 ret
= nilfs_dat_translate(dat
, ptr2
, &blocknr
);
100 if (ptr2
!= ptr
+ cnt
)
108 nilfs_direct_find_target_v(const struct nilfs_direct
*direct
, __u64 key
)
112 ptr
= nilfs_bmap_find_target_seq(&direct
->d_bmap
, key
);
113 if (ptr
!= NILFS_BMAP_INVALID_PTR
)
114 /* sequential access */
118 return nilfs_bmap_find_target_in_group(&direct
->d_bmap
);
121 static void nilfs_direct_set_target_v(struct nilfs_direct
*direct
,
122 __u64 key
, __u64 ptr
)
124 direct
->d_bmap
.b_last_allocated_key
= key
;
125 direct
->d_bmap
.b_last_allocated_ptr
= ptr
;
128 static int nilfs_direct_insert(struct nilfs_bmap
*bmap
, __u64 key
, __u64 ptr
)
130 struct nilfs_direct
*direct
= (struct nilfs_direct
*)bmap
;
131 union nilfs_bmap_ptr_req req
;
132 struct inode
*dat
= NULL
;
133 struct buffer_head
*bh
;
136 if (key
> NILFS_DIRECT_KEY_MAX
)
138 if (nilfs_direct_get_ptr(direct
, key
) != NILFS_BMAP_INVALID_PTR
)
141 if (NILFS_BMAP_USE_VBN(bmap
)) {
142 req
.bpr_ptr
= nilfs_direct_find_target_v(direct
, key
);
143 dat
= nilfs_bmap_get_dat(bmap
);
145 ret
= nilfs_bmap_prepare_alloc_ptr(bmap
, &req
, dat
);
147 /* ptr must be a pointer to a buffer head. */
148 bh
= (struct buffer_head
*)((unsigned long)ptr
);
149 set_buffer_nilfs_volatile(bh
);
151 nilfs_bmap_commit_alloc_ptr(bmap
, &req
, dat
);
152 nilfs_direct_set_ptr(direct
, key
, req
.bpr_ptr
);
154 if (!nilfs_bmap_dirty(bmap
))
155 nilfs_bmap_set_dirty(bmap
);
157 if (NILFS_BMAP_USE_VBN(bmap
))
158 nilfs_direct_set_target_v(direct
, key
, req
.bpr_ptr
);
160 nilfs_bmap_add_blocks(bmap
, 1);
165 static int nilfs_direct_delete(struct nilfs_bmap
*bmap
, __u64 key
)
167 struct nilfs_direct
*direct
= (struct nilfs_direct
*)bmap
;
168 union nilfs_bmap_ptr_req req
;
172 if (key
> NILFS_DIRECT_KEY_MAX
||
173 nilfs_direct_get_ptr(direct
, key
) == NILFS_BMAP_INVALID_PTR
)
176 dat
= NILFS_BMAP_USE_VBN(bmap
) ? nilfs_bmap_get_dat(bmap
) : NULL
;
177 req
.bpr_ptr
= nilfs_direct_get_ptr(direct
, key
);
179 ret
= nilfs_bmap_prepare_end_ptr(bmap
, &req
, dat
);
181 nilfs_bmap_commit_end_ptr(bmap
, &req
, dat
);
182 nilfs_direct_set_ptr(direct
, key
, NILFS_BMAP_INVALID_PTR
);
183 nilfs_bmap_sub_blocks(bmap
, 1);
188 static int nilfs_direct_last_key(const struct nilfs_bmap
*bmap
, __u64
*keyp
)
190 struct nilfs_direct
*direct
;
193 direct
= (struct nilfs_direct
*)bmap
;
194 lastkey
= NILFS_DIRECT_KEY_MAX
+ 1;
195 for (key
= NILFS_DIRECT_KEY_MIN
; key
<= NILFS_DIRECT_KEY_MAX
; key
++)
196 if (nilfs_direct_get_ptr(direct
, key
) !=
197 NILFS_BMAP_INVALID_PTR
)
200 if (lastkey
== NILFS_DIRECT_KEY_MAX
+ 1)
208 static int nilfs_direct_check_insert(const struct nilfs_bmap
*bmap
, __u64 key
)
210 return key
> NILFS_DIRECT_KEY_MAX
;
213 static int nilfs_direct_gather_data(struct nilfs_bmap
*bmap
,
214 __u64
*keys
, __u64
*ptrs
, int nitems
)
216 struct nilfs_direct
*direct
;
221 direct
= (struct nilfs_direct
*)bmap
;
222 if (nitems
> NILFS_DIRECT_NBLOCKS
)
223 nitems
= NILFS_DIRECT_NBLOCKS
;
225 for (key
= 0; key
< nitems
; key
++) {
226 ptr
= nilfs_direct_get_ptr(direct
, key
);
227 if (ptr
!= NILFS_BMAP_INVALID_PTR
) {
236 int nilfs_direct_delete_and_convert(struct nilfs_bmap
*bmap
,
237 __u64 key
, __u64
*keys
, __u64
*ptrs
, int n
)
239 struct nilfs_direct
*direct
;
243 /* no need to allocate any resource for conversion */
246 ret
= bmap
->b_ops
->bop_delete(bmap
, key
);
251 if (bmap
->b_ops
->bop_clear
!= NULL
)
252 bmap
->b_ops
->bop_clear(bmap
);
255 direct
= (struct nilfs_direct
*)bmap
;
256 dptrs
= nilfs_direct_dptrs(direct
);
257 for (i
= 0, j
= 0; i
< NILFS_DIRECT_NBLOCKS
; i
++) {
258 if ((j
< n
) && (i
== keys
[j
])) {
259 dptrs
[i
] = (i
!= key
) ?
260 nilfs_bmap_ptr_to_dptr(ptrs
[j
]) :
261 NILFS_BMAP_INVALID_PTR
;
264 dptrs
[i
] = NILFS_BMAP_INVALID_PTR
;
267 nilfs_direct_init(bmap
);
271 static int nilfs_direct_propagate(const struct nilfs_bmap
*bmap
,
272 struct buffer_head
*bh
)
274 struct nilfs_direct
*direct
= (struct nilfs_direct
*)bmap
;
275 struct nilfs_palloc_req oldreq
, newreq
;
281 if (!NILFS_BMAP_USE_VBN(bmap
))
284 dat
= nilfs_bmap_get_dat(bmap
);
285 key
= nilfs_bmap_data_get_key(bmap
, bh
);
286 ptr
= nilfs_direct_get_ptr(direct
, key
);
287 if (!buffer_nilfs_volatile(bh
)) {
288 oldreq
.pr_entry_nr
= ptr
;
289 newreq
.pr_entry_nr
= ptr
;
290 ret
= nilfs_dat_prepare_update(dat
, &oldreq
, &newreq
);
293 nilfs_dat_commit_update(dat
, &oldreq
, &newreq
,
294 bmap
->b_ptr_type
== NILFS_BMAP_PTR_VS
);
295 set_buffer_nilfs_volatile(bh
);
296 nilfs_direct_set_ptr(direct
, key
, newreq
.pr_entry_nr
);
298 ret
= nilfs_dat_mark_dirty(dat
, ptr
);
303 static int nilfs_direct_assign_v(struct nilfs_direct
*direct
,
304 __u64 key
, __u64 ptr
,
305 struct buffer_head
**bh
,
307 union nilfs_binfo
*binfo
)
309 struct inode
*dat
= nilfs_bmap_get_dat(&direct
->d_bmap
);
310 union nilfs_bmap_ptr_req req
;
314 ret
= nilfs_dat_prepare_start(dat
, &req
.bpr_req
);
316 nilfs_dat_commit_start(dat
, &req
.bpr_req
, blocknr
);
317 binfo
->bi_v
.bi_vblocknr
= nilfs_bmap_ptr_to_dptr(ptr
);
318 binfo
->bi_v
.bi_blkoff
= nilfs_bmap_key_to_dkey(key
);
323 static int nilfs_direct_assign_p(struct nilfs_direct
*direct
,
324 __u64 key
, __u64 ptr
,
325 struct buffer_head
**bh
,
327 union nilfs_binfo
*binfo
)
329 nilfs_direct_set_ptr(direct
, key
, blocknr
);
331 binfo
->bi_dat
.bi_blkoff
= nilfs_bmap_key_to_dkey(key
);
332 binfo
->bi_dat
.bi_level
= 0;
337 static int nilfs_direct_assign(struct nilfs_bmap
*bmap
,
338 struct buffer_head
**bh
,
340 union nilfs_binfo
*binfo
)
342 struct nilfs_direct
*direct
;
346 direct
= (struct nilfs_direct
*)bmap
;
347 key
= nilfs_bmap_data_get_key(bmap
, *bh
);
348 if (unlikely(key
> NILFS_DIRECT_KEY_MAX
)) {
349 printk(KERN_CRIT
"%s: invalid key: %llu\n", __func__
,
350 (unsigned long long)key
);
353 ptr
= nilfs_direct_get_ptr(direct
, key
);
354 if (unlikely(ptr
== NILFS_BMAP_INVALID_PTR
)) {
355 printk(KERN_CRIT
"%s: invalid pointer: %llu\n", __func__
,
356 (unsigned long long)ptr
);
360 return NILFS_BMAP_USE_VBN(bmap
) ?
361 nilfs_direct_assign_v(direct
, key
, ptr
, bh
, blocknr
, binfo
) :
362 nilfs_direct_assign_p(direct
, key
, ptr
, bh
, blocknr
, binfo
);
365 static const struct nilfs_bmap_operations nilfs_direct_ops
= {
366 .bop_lookup
= nilfs_direct_lookup
,
367 .bop_lookup_contig
= nilfs_direct_lookup_contig
,
368 .bop_insert
= nilfs_direct_insert
,
369 .bop_delete
= nilfs_direct_delete
,
372 .bop_propagate
= nilfs_direct_propagate
,
374 .bop_lookup_dirty_buffers
= NULL
,
376 .bop_assign
= nilfs_direct_assign
,
379 .bop_last_key
= nilfs_direct_last_key
,
380 .bop_check_insert
= nilfs_direct_check_insert
,
381 .bop_check_delete
= NULL
,
382 .bop_gather_data
= nilfs_direct_gather_data
,
386 int nilfs_direct_init(struct nilfs_bmap
*bmap
)
388 bmap
->b_ops
= &nilfs_direct_ops
;