2 * btnode.c - NILFS B-tree node cache
4 * Copyright (C) 2005-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 * This file was originally written by Seiji Kihara <kihara@osrg.net>
21 * and fully revised by Ryusuke Konishi <ryusuke@osrg.net> for
22 * stabilization and simplification.
26 #include <linux/types.h>
27 #include <linux/buffer_head.h>
29 #include <linux/backing-dev.h>
30 #include <linux/gfp.h>
38 void nilfs_btnode_cache_init_once(struct address_space
*btnc
)
40 memset(btnc
, 0, sizeof(*btnc
));
41 INIT_RADIX_TREE(&btnc
->page_tree
, GFP_ATOMIC
);
42 spin_lock_init(&btnc
->tree_lock
);
43 INIT_LIST_HEAD(&btnc
->private_list
);
44 spin_lock_init(&btnc
->private_lock
);
46 spin_lock_init(&btnc
->i_mmap_lock
);
47 INIT_RAW_PRIO_TREE_ROOT(&btnc
->i_mmap
);
48 INIT_LIST_HEAD(&btnc
->i_mmap_nonlinear
);
51 static const struct address_space_operations def_btnode_aops
= {
52 .sync_page
= block_sync_page
,
55 void nilfs_btnode_cache_init(struct address_space
*btnc
,
56 struct backing_dev_info
*bdi
)
58 btnc
->host
= NULL
; /* can safely set to host inode ? */
60 mapping_set_gfp_mask(btnc
, GFP_NOFS
);
61 btnc
->assoc_mapping
= NULL
;
62 btnc
->backing_dev_info
= bdi
;
63 btnc
->a_ops
= &def_btnode_aops
;
66 void nilfs_btnode_cache_clear(struct address_space
*btnc
)
68 invalidate_mapping_pages(btnc
, 0, -1);
69 truncate_inode_pages(btnc
, 0);
73 nilfs_btnode_create_block(struct address_space
*btnc
, __u64 blocknr
)
75 struct inode
*inode
= NILFS_BTNC_I(btnc
);
76 struct buffer_head
*bh
;
78 bh
= nilfs_grab_buffer(inode
, btnc
, blocknr
, 1 << BH_NILFS_Node
);
82 if (unlikely(buffer_mapped(bh
) || buffer_uptodate(bh
) ||
87 memset(bh
->b_data
, 0, 1 << inode
->i_blkbits
);
88 bh
->b_bdev
= NILFS_I_NILFS(inode
)->ns_bdev
;
89 bh
->b_blocknr
= blocknr
;
90 set_buffer_mapped(bh
);
91 set_buffer_uptodate(bh
);
93 unlock_page(bh
->b_page
);
94 page_cache_release(bh
->b_page
);
98 int nilfs_btnode_submit_block(struct address_space
*btnc
, __u64 blocknr
,
99 sector_t pblocknr
, int mode
,
100 struct buffer_head
**pbh
, sector_t
*submit_ptr
)
102 struct buffer_head
*bh
;
103 struct inode
*inode
= NILFS_BTNC_I(btnc
);
107 bh
= nilfs_grab_buffer(inode
, btnc
, blocknr
, 1 << BH_NILFS_Node
);
111 err
= -EEXIST
; /* internal code */
114 if (buffer_uptodate(bh
) || buffer_dirty(bh
))
119 if (inode
->i_ino
!= NILFS_DAT_INO
) {
121 nilfs_dat_inode(NILFS_I_NILFS(inode
));
123 /* blocknr is a virtual block number */
124 err
= nilfs_dat_translate(dat
, blocknr
, &pblocknr
);
133 if (pblocknr
!= *submit_ptr
+ 1 || !trylock_buffer(bh
)) {
134 err
= -EBUSY
; /* internal code */
138 } else { /* mode == READ */
141 if (buffer_uptodate(bh
)) {
143 err
= -EEXIST
; /* internal code */
146 set_buffer_mapped(bh
);
147 bh
->b_bdev
= NILFS_I_NILFS(inode
)->ns_bdev
;
148 bh
->b_blocknr
= pblocknr
; /* set block address for read */
149 bh
->b_end_io
= end_buffer_read_sync
;
152 bh
->b_blocknr
= blocknr
; /* set back to the given block address */
153 *submit_ptr
= pblocknr
;
160 page_cache_release(page
);
165 * nilfs_btnode_delete - delete B-tree node buffer
166 * @bh: buffer to be deleted
168 * nilfs_btnode_delete() invalidates the specified buffer and delete the page
169 * including the buffer if the page gets unbusy.
171 void nilfs_btnode_delete(struct buffer_head
*bh
)
173 struct address_space
*mapping
;
174 struct page
*page
= bh
->b_page
;
175 pgoff_t index
= page_index(page
);
178 page_cache_get(page
);
180 wait_on_page_writeback(page
);
182 nilfs_forget_buffer(bh
);
183 still_dirty
= PageDirty(page
);
184 mapping
= page
->mapping
;
186 page_cache_release(page
);
188 if (!still_dirty
&& mapping
)
189 invalidate_inode_pages2_range(mapping
, index
, index
);
193 * nilfs_btnode_prepare_change_key
194 * prepare to move contents of the block for old key to one of new key.
195 * the old buffer will not be removed, but might be reused for new buffer.
196 * it might return -ENOMEM because of memory allocation errors,
197 * and might return -EIO because of disk read errors.
199 int nilfs_btnode_prepare_change_key(struct address_space
*btnc
,
200 struct nilfs_btnode_chkey_ctxt
*ctxt
)
202 struct buffer_head
*obh
, *nbh
;
203 struct inode
*inode
= NILFS_BTNC_I(btnc
);
204 __u64 oldkey
= ctxt
->oldkey
, newkey
= ctxt
->newkey
;
207 if (oldkey
== newkey
)
213 if (inode
->i_blkbits
== PAGE_CACHE_SHIFT
) {
214 lock_page(obh
->b_page
);
216 * We cannot call radix_tree_preload for the kernels older
217 * than 2.6.23, because it is not exported for modules.
220 err
= radix_tree_preload(GFP_NOFS
& ~__GFP_HIGHMEM
);
223 /* BUG_ON(oldkey != obh->b_page->index); */
224 if (unlikely(oldkey
!= obh
->b_page
->index
))
225 NILFS_PAGE_BUG(obh
->b_page
,
226 "invalid oldkey %lld (newkey=%lld)",
227 (unsigned long long)oldkey
,
228 (unsigned long long)newkey
);
230 spin_lock_irq(&btnc
->tree_lock
);
231 err
= radix_tree_insert(&btnc
->page_tree
, newkey
, obh
->b_page
);
232 spin_unlock_irq(&btnc
->tree_lock
);
234 * Note: page->index will not change to newkey until
235 * nilfs_btnode_commit_change_key() will be called.
236 * To protect the page in intermediate state, the page lock
239 radix_tree_preload_end();
242 else if (err
!= -EEXIST
)
245 err
= invalidate_inode_pages2_range(btnc
, newkey
, newkey
);
248 /* fallback to copy mode */
249 unlock_page(obh
->b_page
);
252 nbh
= nilfs_btnode_create_block(btnc
, newkey
);
261 unlock_page(obh
->b_page
);
266 * nilfs_btnode_commit_change_key
267 * commit the change_key operation prepared by prepare_change_key().
269 void nilfs_btnode_commit_change_key(struct address_space
*btnc
,
270 struct nilfs_btnode_chkey_ctxt
*ctxt
)
272 struct buffer_head
*obh
= ctxt
->bh
, *nbh
= ctxt
->newbh
;
273 __u64 oldkey
= ctxt
->oldkey
, newkey
= ctxt
->newkey
;
276 if (oldkey
== newkey
)
279 if (nbh
== NULL
) { /* blocksize == pagesize */
281 if (unlikely(oldkey
!= opage
->index
))
282 NILFS_PAGE_BUG(opage
,
283 "invalid oldkey %lld (newkey=%lld)",
284 (unsigned long long)oldkey
,
285 (unsigned long long)newkey
);
286 nilfs_btnode_mark_dirty(obh
);
288 spin_lock_irq(&btnc
->tree_lock
);
289 radix_tree_delete(&btnc
->page_tree
, oldkey
);
290 radix_tree_tag_set(&btnc
->page_tree
, newkey
,
291 PAGECACHE_TAG_DIRTY
);
292 spin_unlock_irq(&btnc
->tree_lock
);
294 opage
->index
= obh
->b_blocknr
= newkey
;
297 nilfs_copy_buffer(nbh
, obh
);
298 nilfs_btnode_mark_dirty(nbh
);
300 nbh
->b_blocknr
= newkey
;
302 nilfs_btnode_delete(obh
); /* will decrement bh->b_count */
307 * nilfs_btnode_abort_change_key
308 * abort the change_key operation prepared by prepare_change_key().
310 void nilfs_btnode_abort_change_key(struct address_space
*btnc
,
311 struct nilfs_btnode_chkey_ctxt
*ctxt
)
313 struct buffer_head
*nbh
= ctxt
->newbh
;
314 __u64 oldkey
= ctxt
->oldkey
, newkey
= ctxt
->newkey
;
316 if (oldkey
== newkey
)
319 if (nbh
== NULL
) { /* blocksize == pagesize */
320 spin_lock_irq(&btnc
->tree_lock
);
321 radix_tree_delete(&btnc
->page_tree
, newkey
);
322 spin_unlock_irq(&btnc
->tree_lock
);
323 unlock_page(ctxt
->bh
->b_page
);