Linux Kernel  3.7.1
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
btnode.h
Go to the documentation of this file.
1 /*
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  *
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 Seiji Kihara <[email protected]>
21  * Revised by Ryusuke Konishi <[email protected]>
22  */
23 
24 #ifndef _NILFS_BTNODE_H
25 #define _NILFS_BTNODE_H
26 
27 #include <linux/types.h>
28 #include <linux/buffer_head.h>
29 #include <linux/fs.h>
30 #include <linux/backing-dev.h>
31 
42  struct buffer_head *bh;
43  struct buffer_head *newbh;
44 };
45 
47 struct buffer_head *nilfs_btnode_create_block(struct address_space *btnc,
48  __u64 blocknr);
50  struct buffer_head **, sector_t *);
51 void nilfs_btnode_delete(struct buffer_head *);
53  struct nilfs_btnode_chkey_ctxt *);
55  struct nilfs_btnode_chkey_ctxt *);
57  struct nilfs_btnode_chkey_ctxt *);
58 
59 #endif /* _NILFS_BTNODE_H */