2 * dat.c - NILFS disk address translation.
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/types.h>
24 #include <linux/buffer_head.h>
25 #include <linux/string.h>
26 #include <linux/errno.h>
33 #define NILFS_CNO_MIN ((__u64)1)
34 #define NILFS_CNO_MAX (~(__u64)0)
36 struct nilfs_dat_info
{
37 struct nilfs_mdt_info mi
;
38 struct nilfs_palloc_cache palloc_cache
;
39 struct nilfs_shadow_map shadow
;
42 static inline struct nilfs_dat_info
*NILFS_DAT_I(struct inode
*dat
)
44 return (struct nilfs_dat_info
*)NILFS_MDT(dat
);
47 static int nilfs_dat_prepare_entry(struct inode
*dat
,
48 struct nilfs_palloc_req
*req
, int create
)
50 return nilfs_palloc_get_entry_block(dat
, req
->pr_entry_nr
,
51 create
, &req
->pr_entry_bh
);
54 static void nilfs_dat_commit_entry(struct inode
*dat
,
55 struct nilfs_palloc_req
*req
)
57 nilfs_mdt_mark_buffer_dirty(req
->pr_entry_bh
);
58 nilfs_mdt_mark_dirty(dat
);
59 brelse(req
->pr_entry_bh
);
62 static void nilfs_dat_abort_entry(struct inode
*dat
,
63 struct nilfs_palloc_req
*req
)
65 brelse(req
->pr_entry_bh
);
68 int nilfs_dat_prepare_alloc(struct inode
*dat
, struct nilfs_palloc_req
*req
)
72 ret
= nilfs_palloc_prepare_alloc_entry(dat
, req
);
76 ret
= nilfs_dat_prepare_entry(dat
, req
, 1);
78 nilfs_palloc_abort_alloc_entry(dat
, req
);
83 void nilfs_dat_commit_alloc(struct inode
*dat
, struct nilfs_palloc_req
*req
)
85 struct nilfs_dat_entry
*entry
;
88 kaddr
= kmap_atomic(req
->pr_entry_bh
->b_page
, KM_USER0
);
89 entry
= nilfs_palloc_block_get_entry(dat
, req
->pr_entry_nr
,
90 req
->pr_entry_bh
, kaddr
);
91 entry
->de_start
= cpu_to_le64(NILFS_CNO_MIN
);
92 entry
->de_end
= cpu_to_le64(NILFS_CNO_MAX
);
93 entry
->de_blocknr
= cpu_to_le64(0);
94 kunmap_atomic(kaddr
, KM_USER0
);
96 nilfs_palloc_commit_alloc_entry(dat
, req
);
97 nilfs_dat_commit_entry(dat
, req
);
100 void nilfs_dat_abort_alloc(struct inode
*dat
, struct nilfs_palloc_req
*req
)
102 nilfs_dat_abort_entry(dat
, req
);
103 nilfs_palloc_abort_alloc_entry(dat
, req
);
106 static void nilfs_dat_commit_free(struct inode
*dat
,
107 struct nilfs_palloc_req
*req
)
109 struct nilfs_dat_entry
*entry
;
112 kaddr
= kmap_atomic(req
->pr_entry_bh
->b_page
, KM_USER0
);
113 entry
= nilfs_palloc_block_get_entry(dat
, req
->pr_entry_nr
,
114 req
->pr_entry_bh
, kaddr
);
115 entry
->de_start
= cpu_to_le64(NILFS_CNO_MIN
);
116 entry
->de_end
= cpu_to_le64(NILFS_CNO_MIN
);
117 entry
->de_blocknr
= cpu_to_le64(0);
118 kunmap_atomic(kaddr
, KM_USER0
);
120 nilfs_dat_commit_entry(dat
, req
);
121 nilfs_palloc_commit_free_entry(dat
, req
);
124 int nilfs_dat_prepare_start(struct inode
*dat
, struct nilfs_palloc_req
*req
)
128 ret
= nilfs_dat_prepare_entry(dat
, req
, 0);
129 WARN_ON(ret
== -ENOENT
);
133 void nilfs_dat_commit_start(struct inode
*dat
, struct nilfs_palloc_req
*req
,
136 struct nilfs_dat_entry
*entry
;
139 kaddr
= kmap_atomic(req
->pr_entry_bh
->b_page
, KM_USER0
);
140 entry
= nilfs_palloc_block_get_entry(dat
, req
->pr_entry_nr
,
141 req
->pr_entry_bh
, kaddr
);
142 entry
->de_start
= cpu_to_le64(nilfs_mdt_cno(dat
));
143 entry
->de_blocknr
= cpu_to_le64(blocknr
);
144 kunmap_atomic(kaddr
, KM_USER0
);
146 nilfs_dat_commit_entry(dat
, req
);
149 int nilfs_dat_prepare_end(struct inode
*dat
, struct nilfs_palloc_req
*req
)
151 struct nilfs_dat_entry
*entry
;
157 ret
= nilfs_dat_prepare_entry(dat
, req
, 0);
159 WARN_ON(ret
== -ENOENT
);
163 kaddr
= kmap_atomic(req
->pr_entry_bh
->b_page
, KM_USER0
);
164 entry
= nilfs_palloc_block_get_entry(dat
, req
->pr_entry_nr
,
165 req
->pr_entry_bh
, kaddr
);
166 start
= le64_to_cpu(entry
->de_start
);
167 blocknr
= le64_to_cpu(entry
->de_blocknr
);
168 kunmap_atomic(kaddr
, KM_USER0
);
171 ret
= nilfs_palloc_prepare_free_entry(dat
, req
);
173 nilfs_dat_abort_entry(dat
, req
);
181 void nilfs_dat_commit_end(struct inode
*dat
, struct nilfs_palloc_req
*req
,
184 struct nilfs_dat_entry
*entry
;
189 kaddr
= kmap_atomic(req
->pr_entry_bh
->b_page
, KM_USER0
);
190 entry
= nilfs_palloc_block_get_entry(dat
, req
->pr_entry_nr
,
191 req
->pr_entry_bh
, kaddr
);
192 end
= start
= le64_to_cpu(entry
->de_start
);
194 end
= nilfs_mdt_cno(dat
);
195 WARN_ON(start
> end
);
197 entry
->de_end
= cpu_to_le64(end
);
198 blocknr
= le64_to_cpu(entry
->de_blocknr
);
199 kunmap_atomic(kaddr
, KM_USER0
);
202 nilfs_dat_commit_free(dat
, req
);
204 nilfs_dat_commit_entry(dat
, req
);
207 void nilfs_dat_abort_end(struct inode
*dat
, struct nilfs_palloc_req
*req
)
209 struct nilfs_dat_entry
*entry
;
214 kaddr
= kmap_atomic(req
->pr_entry_bh
->b_page
, KM_USER0
);
215 entry
= nilfs_palloc_block_get_entry(dat
, req
->pr_entry_nr
,
216 req
->pr_entry_bh
, kaddr
);
217 start
= le64_to_cpu(entry
->de_start
);
218 blocknr
= le64_to_cpu(entry
->de_blocknr
);
219 kunmap_atomic(kaddr
, KM_USER0
);
221 if (start
== nilfs_mdt_cno(dat
) && blocknr
== 0)
222 nilfs_palloc_abort_free_entry(dat
, req
);
223 nilfs_dat_abort_entry(dat
, req
);
226 int nilfs_dat_prepare_update(struct inode
*dat
,
227 struct nilfs_palloc_req
*oldreq
,
228 struct nilfs_palloc_req
*newreq
)
232 ret
= nilfs_dat_prepare_end(dat
, oldreq
);
234 ret
= nilfs_dat_prepare_alloc(dat
, newreq
);
236 nilfs_dat_abort_end(dat
, oldreq
);
241 void nilfs_dat_commit_update(struct inode
*dat
,
242 struct nilfs_palloc_req
*oldreq
,
243 struct nilfs_palloc_req
*newreq
, int dead
)
245 nilfs_dat_commit_end(dat
, oldreq
, dead
);
246 nilfs_dat_commit_alloc(dat
, newreq
);
249 void nilfs_dat_abort_update(struct inode
*dat
,
250 struct nilfs_palloc_req
*oldreq
,
251 struct nilfs_palloc_req
*newreq
)
253 nilfs_dat_abort_end(dat
, oldreq
);
254 nilfs_dat_abort_alloc(dat
, newreq
);
258 * nilfs_dat_mark_dirty -
259 * @dat: DAT file inode
260 * @vblocknr: virtual block number
264 * Return Value: On success, 0 is returned. On error, one of the following
265 * negative error codes is returned.
269 * %-ENOMEM - Insufficient amount of memory available.
271 int nilfs_dat_mark_dirty(struct inode
*dat
, __u64 vblocknr
)
273 struct nilfs_palloc_req req
;
276 req
.pr_entry_nr
= vblocknr
;
277 ret
= nilfs_dat_prepare_entry(dat
, &req
, 0);
279 nilfs_dat_commit_entry(dat
, &req
);
284 * nilfs_dat_freev - free virtual block numbers
285 * @dat: DAT file inode
286 * @vblocknrs: array of virtual block numbers
287 * @nitems: number of virtual block numbers
289 * Description: nilfs_dat_freev() frees the virtual block numbers specified by
290 * @vblocknrs and @nitems.
292 * Return Value: On success, 0 is returned. On error, one of the following
293 * negative error codes is returned.
297 * %-ENOMEM - Insufficient amount of memory available.
299 * %-ENOENT - The virtual block number have not been allocated.
301 int nilfs_dat_freev(struct inode
*dat
, __u64
*vblocknrs
, size_t nitems
)
303 return nilfs_palloc_freev(dat
, vblocknrs
, nitems
);
307 * nilfs_dat_move - change a block number
308 * @dat: DAT file inode
309 * @vblocknr: virtual block number
310 * @blocknr: block number
312 * Description: nilfs_dat_move() changes the block number associated with
313 * @vblocknr to @blocknr.
315 * Return Value: On success, 0 is returned. On error, one of the following
316 * negative error codes is returned.
320 * %-ENOMEM - Insufficient amount of memory available.
322 int nilfs_dat_move(struct inode
*dat
, __u64 vblocknr
, sector_t blocknr
)
324 struct buffer_head
*entry_bh
;
325 struct nilfs_dat_entry
*entry
;
329 ret
= nilfs_palloc_get_entry_block(dat
, vblocknr
, 0, &entry_bh
);
334 * The given disk block number (blocknr) is not yet written to
335 * the device at this point.
337 * To prevent nilfs_dat_translate() from returning the
338 * uncommitted block number, this makes a copy of the entry
339 * buffer and redirects nilfs_dat_translate() to the copy.
341 if (!buffer_nilfs_redirected(entry_bh
)) {
342 ret
= nilfs_mdt_freeze_buffer(dat
, entry_bh
);
349 kaddr
= kmap_atomic(entry_bh
->b_page
, KM_USER0
);
350 entry
= nilfs_palloc_block_get_entry(dat
, vblocknr
, entry_bh
, kaddr
);
351 if (unlikely(entry
->de_blocknr
== cpu_to_le64(0))) {
352 printk(KERN_CRIT
"%s: vbn = %llu, [%llu, %llu)\n", __func__
,
353 (unsigned long long)vblocknr
,
354 (unsigned long long)le64_to_cpu(entry
->de_start
),
355 (unsigned long long)le64_to_cpu(entry
->de_end
));
356 kunmap_atomic(kaddr
, KM_USER0
);
360 WARN_ON(blocknr
== 0);
361 entry
->de_blocknr
= cpu_to_le64(blocknr
);
362 kunmap_atomic(kaddr
, KM_USER0
);
364 nilfs_mdt_mark_buffer_dirty(entry_bh
);
365 nilfs_mdt_mark_dirty(dat
);
373 * nilfs_dat_translate - translate a virtual block number to a block number
374 * @dat: DAT file inode
375 * @vblocknr: virtual block number
376 * @blocknrp: pointer to a block number
378 * Description: nilfs_dat_translate() maps the virtual block number @vblocknr
379 * to the corresponding block number.
381 * Return Value: On success, 0 is returned and the block number associated
382 * with @vblocknr is stored in the place pointed by @blocknrp. On error, one
383 * of the following negative error codes is returned.
387 * %-ENOMEM - Insufficient amount of memory available.
389 * %-ENOENT - A block number associated with @vblocknr does not exist.
391 int nilfs_dat_translate(struct inode
*dat
, __u64 vblocknr
, sector_t
*blocknrp
)
393 struct buffer_head
*entry_bh
, *bh
;
394 struct nilfs_dat_entry
*entry
;
399 ret
= nilfs_palloc_get_entry_block(dat
, vblocknr
, 0, &entry_bh
);
403 if (!nilfs_doing_gc() && buffer_nilfs_redirected(entry_bh
)) {
404 bh
= nilfs_mdt_get_frozen_buffer(dat
, entry_bh
);
406 WARN_ON(!buffer_uptodate(bh
));
412 kaddr
= kmap_atomic(entry_bh
->b_page
, KM_USER0
);
413 entry
= nilfs_palloc_block_get_entry(dat
, vblocknr
, entry_bh
, kaddr
);
414 blocknr
= le64_to_cpu(entry
->de_blocknr
);
422 kunmap_atomic(kaddr
, KM_USER0
);
427 ssize_t
nilfs_dat_get_vinfo(struct inode
*dat
, void *buf
, unsigned visz
,
430 struct buffer_head
*entry_bh
;
431 struct nilfs_dat_entry
*entry
;
432 struct nilfs_vinfo
*vinfo
= buf
;
435 unsigned long entries_per_block
= NILFS_MDT(dat
)->mi_entries_per_block
;
438 for (i
= 0; i
< nvi
; i
+= n
) {
439 ret
= nilfs_palloc_get_entry_block(dat
, vinfo
->vi_vblocknr
,
443 kaddr
= kmap_atomic(entry_bh
->b_page
, KM_USER0
);
444 /* last virtual block number in this block */
445 first
= vinfo
->vi_vblocknr
;
446 do_div(first
, entries_per_block
);
447 first
*= entries_per_block
;
448 last
= first
+ entries_per_block
- 1;
450 j
< nvi
&& vinfo
->vi_vblocknr
>= first
&&
451 vinfo
->vi_vblocknr
<= last
;
452 j
++, n
++, vinfo
= (void *)vinfo
+ visz
) {
453 entry
= nilfs_palloc_block_get_entry(
454 dat
, vinfo
->vi_vblocknr
, entry_bh
, kaddr
);
455 vinfo
->vi_start
= le64_to_cpu(entry
->de_start
);
456 vinfo
->vi_end
= le64_to_cpu(entry
->de_end
);
457 vinfo
->vi_blocknr
= le64_to_cpu(entry
->de_blocknr
);
459 kunmap_atomic(kaddr
, KM_USER0
);
467 * nilfs_dat_read - read or get dat inode
468 * @sb: super block instance
469 * @entry_size: size of a dat entry
470 * @raw_inode: on-disk dat inode
471 * @inodep: buffer to store the inode
473 int nilfs_dat_read(struct super_block
*sb
, size_t entry_size
,
474 struct nilfs_inode
*raw_inode
, struct inode
**inodep
)
476 static struct lock_class_key dat_lock_key
;
478 struct nilfs_dat_info
*di
;
481 dat
= nilfs_iget_locked(sb
, NULL
, NILFS_DAT_INO
);
484 if (!(dat
->i_state
& I_NEW
))
487 err
= nilfs_mdt_init(dat
, NILFS_MDT_GFP
, sizeof(*di
));
491 err
= nilfs_palloc_init_blockgroup(dat
, entry_size
);
495 di
= NILFS_DAT_I(dat
);
496 lockdep_set_class(&di
->mi
.mi_sem
, &dat_lock_key
);
497 nilfs_palloc_setup_cache(dat
, &di
->palloc_cache
);
498 nilfs_mdt_setup_shadow_map(dat
, &di
->shadow
);
500 err
= nilfs_read_inode_common(dat
, raw_inode
);
504 unlock_new_inode(dat
);