1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23#ifndef _NILFS_CPFILE_H
24#define _NILFS_CPFILE_H
25
26#include <linux/fs.h>
27#include <linux/buffer_head.h>
28#include <linux/nilfs2_fs.h>
29
30
31int nilfs_cpfile_get_checkpoint(struct inode *, __u64, int,
32 struct nilfs_checkpoint **,
33 struct buffer_head **);
34void nilfs_cpfile_put_checkpoint(struct inode *, __u64, struct buffer_head *);
35int nilfs_cpfile_delete_checkpoints(struct inode *, __u64, __u64);
36int nilfs_cpfile_delete_checkpoint(struct inode *, __u64);
37int nilfs_cpfile_change_cpmode(struct inode *, __u64, int);
38int nilfs_cpfile_is_snapshot(struct inode *, __u64);
39int nilfs_cpfile_get_stat(struct inode *, struct nilfs_cpstat *);
40ssize_t nilfs_cpfile_get_cpinfo(struct inode *, __u64 *, int, void *, unsigned,
41 size_t);
42
43int nilfs_cpfile_read(struct super_block *sb, size_t cpsize,
44 struct nilfs_inode *raw_inode, struct inode **inodep);
45
46#endif
47