blob: c98202417fdee592863918b8df419fd4248d95c6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
#ifndef _BCACHE_FS_H
#define _BCACHE_FS_H
#include "str_hash.h"
#include <linux/seqlock.h>
struct bch_inode_info {
struct inode vfs_inode;
struct mutex update_lock;
u64 journal_seq;
atomic_long_t i_size_dirty_count;
/*
* these are updated whenever we update the inode in the btree - for
* e.g. fsync
*/
u64 i_size;
u32 i_flags;
atomic_long_t i_sectors_dirty_count;
atomic64_t i_sectors;
struct bch_hash_info str_hash;
};
#define to_bch_ei(_inode) \
container_of(_inode, struct bch_inode_info, vfs_inode)
static inline u8 mode_to_type(umode_t mode)
{
return (mode >> 12) & 15;
}
/* returns 0 if we want to do the update, or error is passed up */
typedef int (*inode_set_fn)(struct bch_inode_info *,
struct bch_inode *, void *);
int __must_check __bch_write_inode(struct cache_set *, struct bch_inode_info *,
inode_set_fn, void *);
int __must_check bch_write_inode(struct cache_set *,
struct bch_inode_info *);
void bch_fs_exit(void);
int bch_fs_init(void);
#endif /* _BCACHE_FS_H */
|