bcachefs-tools/libbcachefs/fs.h

69 lines
1.4 KiB
C
Raw Normal View History

#ifndef _BCACHEFS_FS_H
#define _BCACHEFS_FS_H
2017-01-08 12:13:18 +03:00
#include "str_hash.h"
#include <linux/seqlock.h>
#include <linux/stat.h>
2017-01-08 12:13:18 +03:00
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;
unsigned long last_dirtied;
2017-01-08 12:13:18 +03:00
};
#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;
}
2016-10-04 06:22:17 +03:00
static inline unsigned nlink_bias(umode_t mode)
{
return S_ISDIR(mode) ? 2 : 1;
}
struct bch_inode_unpacked;
#ifndef NO_BCACHEFS_FS
2017-01-08 12:13:18 +03:00
/* returns 0 if we want to do the update, or error is passed up */
typedef int (*inode_set_fn)(struct bch_inode_info *,
2016-10-04 06:22:17 +03:00
struct bch_inode_unpacked *, void *);
2017-01-08 12:13:18 +03:00
int __must_check __bch2_write_inode(struct bch_fs *, struct bch_inode_info *,
inode_set_fn, void *);
int __must_check bch2_write_inode(struct bch_fs *,
struct bch_inode_info *);
2017-01-08 12:13:18 +03:00
void bch2_vfs_exit(void);
int bch2_vfs_init(void);
2017-01-08 12:13:18 +03:00
#else
static inline void bch2_vfs_exit(void) {}
static inline int bch2_vfs_init(void) { return 0; }
#endif /* NO_BCACHEFS_FS */
#endif /* _BCACHEFS_FS_H */