2017-10-06 01:41:44 +03:00
|
|
|
#ifndef _BCACHEFS_FS_H
|
|
|
|
#define _BCACHEFS_FS_H
|
2017-01-08 12:13:18 +03:00
|
|
|
|
2017-12-22 02:00:30 +03:00
|
|
|
#include "opts.h"
|
2017-01-08 12:13:18 +03:00
|
|
|
#include "str_hash.h"
|
2018-01-11 14:41:59 +03:00
|
|
|
#include "quota_types.h"
|
2017-01-08 12:13:18 +03:00
|
|
|
|
|
|
|
#include <linux/seqlock.h>
|
2017-03-20 08:39:19 +03:00
|
|
|
#include <linux/stat.h>
|
2017-01-08 12:13:18 +03:00
|
|
|
|
|
|
|
struct bch_inode_info {
|
2017-11-05 01:32:07 +03:00
|
|
|
struct inode v;
|
2017-01-08 12:13:18 +03:00
|
|
|
|
2017-11-05 01:32:07 +03:00
|
|
|
struct mutex ei_update_lock;
|
|
|
|
u64 ei_journal_seq;
|
2018-01-21 20:16:32 +03:00
|
|
|
u64 ei_quota_reserved;
|
2017-12-22 02:00:30 +03:00
|
|
|
unsigned long ei_last_dirtied;
|
2018-05-04 21:04:31 +03:00
|
|
|
|
|
|
|
struct mutex ei_quota_lock;
|
2018-01-11 14:41:59 +03:00
|
|
|
struct bch_qid ei_qid;
|
2017-01-08 12:13:18 +03:00
|
|
|
|
2017-11-05 01:32:07 +03:00
|
|
|
struct bch_hash_info ei_str_hash;
|
2017-10-06 01:41:44 +03:00
|
|
|
|
2017-12-22 02:00:30 +03:00
|
|
|
/* copy of inode in btree: */
|
|
|
|
struct bch_inode_unpacked ei_inode;
|
2017-01-08 12:13:18 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
#define to_bch_ei(_inode) \
|
2017-11-05 01:32:07 +03:00
|
|
|
container_of_or_null(_inode, struct bch_inode_info, v)
|
|
|
|
|
|
|
|
static inline struct bch_inode_info *file_bch_inode(struct file *file)
|
|
|
|
{
|
|
|
|
return to_bch_ei(file_inode(file));
|
|
|
|
}
|
2017-01-08 12:13:18 +03:00
|
|
|
|
|
|
|
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;
|
|
|
|
|
2017-10-06 01:41:44 +03:00
|
|
|
#ifndef NO_BCACHEFS_FS
|
2017-03-04 09:09:52 +03:00
|
|
|
|
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
|
|
|
|
2018-07-16 10:58:54 +03:00
|
|
|
void bch2_inode_update_after_write(struct bch_fs *,
|
|
|
|
struct bch_inode_info *,
|
|
|
|
struct bch_inode_unpacked *,
|
|
|
|
unsigned);
|
|
|
|
int __must_check bch2_write_inode_trans(struct btree_trans *,
|
|
|
|
struct bch_inode_info *,
|
|
|
|
struct bch_inode_unpacked *,
|
|
|
|
inode_set_fn, void *);
|
2017-03-20 02:56:34 +03:00
|
|
|
int __must_check __bch2_write_inode(struct bch_fs *, struct bch_inode_info *,
|
2018-07-16 10:58:54 +03:00
|
|
|
inode_set_fn, void *, unsigned);
|
2017-03-20 02:56:34 +03:00
|
|
|
int __must_check bch2_write_inode(struct bch_fs *,
|
|
|
|
struct bch_inode_info *);
|
2017-01-08 12:13:18 +03:00
|
|
|
|
2017-03-20 02:56:34 +03:00
|
|
|
void bch2_vfs_exit(void);
|
|
|
|
int bch2_vfs_init(void);
|
2017-01-08 12:13:18 +03:00
|
|
|
|
2017-03-04 09:09:52 +03:00
|
|
|
#else
|
|
|
|
|
2017-03-20 02:56:34 +03:00
|
|
|
static inline void bch2_vfs_exit(void) {}
|
|
|
|
static inline int bch2_vfs_init(void) { return 0; }
|
2017-03-04 09:09:52 +03:00
|
|
|
|
2017-10-06 01:41:44 +03:00
|
|
|
#endif /* NO_BCACHEFS_FS */
|
2017-03-04 09:09:52 +03:00
|
|
|
|
2017-10-06 01:41:44 +03:00
|
|
|
#endif /* _BCACHEFS_FS_H */
|