blob: 4e8aaa1aeb65db70bc1f7fcc9faae7a81f96d09c [file] [log] [blame]
Ryusuke Konishia60be982009-04-06 19:01:25 -07001/*
2 * btnode.h - NILFS B-tree node cache
3 *
4 * Copyright (C) 2005-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 *
Ryusuke Konishi4b420ab2016-05-23 16:23:09 -070016 * Written by Seiji Kihara.
17 * Revised by Ryusuke Konishi.
Ryusuke Konishia60be982009-04-06 19:01:25 -070018 */
19
20#ifndef _NILFS_BTNODE_H
21#define _NILFS_BTNODE_H
22
23#include <linux/types.h>
24#include <linux/buffer_head.h>
25#include <linux/fs.h>
26#include <linux/backing-dev.h>
27
Vyacheslav Dubeykof5974c82012-07-30 14:42:10 -070028/**
29 * struct nilfs_btnode_chkey_ctxt - change key context
30 * @oldkey: old key of block's moving content
31 * @newkey: new key for block's content
32 * @bh: buffer head of old buffer
33 * @newbh: buffer head of new buffer
34 */
Ryusuke Konishia60be982009-04-06 19:01:25 -070035struct nilfs_btnode_chkey_ctxt {
36 __u64 oldkey;
37 __u64 newkey;
38 struct buffer_head *bh;
39 struct buffer_head *newbh;
40};
41
Ryusuke Konishia60be982009-04-06 19:01:25 -070042void nilfs_btnode_cache_clear(struct address_space *);
Ryusuke Konishid501d732009-11-13 16:04:11 +090043struct buffer_head *nilfs_btnode_create_block(struct address_space *btnc,
44 __u64 blocknr);
Ryusuke Konishi26dfdd82010-07-18 10:42:23 +090045int nilfs_btnode_submit_block(struct address_space *, __u64, sector_t, int,
Mike Christie2a222ca2016-06-05 14:31:43 -050046 int, struct buffer_head **, sector_t *);
Ryusuke Konishia60be982009-04-06 19:01:25 -070047void nilfs_btnode_delete(struct buffer_head *);
48int nilfs_btnode_prepare_change_key(struct address_space *,
49 struct nilfs_btnode_chkey_ctxt *);
50void nilfs_btnode_commit_change_key(struct address_space *,
51 struct nilfs_btnode_chkey_ctxt *);
52void nilfs_btnode_abort_change_key(struct address_space *,
53 struct nilfs_btnode_chkey_ctxt *);
54
Ryusuke Konishia60be982009-04-06 19:01:25 -070055#endif /* _NILFS_BTNODE_H */