2017-03-17 06:18:50 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0 */
|
|
|
|
#ifndef _BCACHEFS_QUOTA_H
|
|
|
|
#define _BCACHEFS_QUOTA_H
|
|
|
|
|
|
|
|
#include "inode.h"
|
|
|
|
#include "quota_types.h"
|
|
|
|
|
2024-05-08 22:40:42 +00:00
|
|
|
enum bch_validate_flags;
|
2017-03-17 06:18:50 +00:00
|
|
|
extern const struct bch_sb_field_ops bch_sb_field_ops_quota;
|
|
|
|
|
2024-08-13 01:31:25 +00:00
|
|
|
int bch2_quota_validate(struct bch_fs *, struct bkey_s_c, enum bch_validate_flags);
|
2018-11-09 06:24:07 +00:00
|
|
|
void bch2_quota_to_text(struct printbuf *, struct bch_fs *, struct bkey_s_c);
|
2017-03-17 06:18:50 +00:00
|
|
|
|
2022-10-22 19:59:53 +00:00
|
|
|
#define bch2_bkey_ops_quota ((struct bkey_ops) { \
|
2024-08-13 01:31:25 +00:00
|
|
|
.key_validate = bch2_quota_validate, \
|
2017-03-17 06:18:50 +00:00
|
|
|
.val_to_text = bch2_quota_to_text, \
|
2023-04-29 17:24:18 +00:00
|
|
|
.min_val_size = 32, \
|
2022-10-22 19:59:53 +00:00
|
|
|
})
|
2017-03-17 06:18:50 +00:00
|
|
|
|
|
|
|
static inline struct bch_qid bch_qid(struct bch_inode_unpacked *u)
|
|
|
|
{
|
|
|
|
return (struct bch_qid) {
|
|
|
|
.q[QTYP_USR] = u->bi_uid,
|
|
|
|
.q[QTYP_GRP] = u->bi_gid,
|
2018-12-19 13:43:01 +00:00
|
|
|
.q[QTYP_PRJ] = u->bi_project ? u->bi_project - 1 : 0,
|
2017-03-17 06:18:50 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline unsigned enabled_qtypes(struct bch_fs *c)
|
|
|
|
{
|
|
|
|
return ((c->opts.usrquota << QTYP_USR)|
|
|
|
|
(c->opts.grpquota << QTYP_GRP)|
|
|
|
|
(c->opts.prjquota << QTYP_PRJ));
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef CONFIG_BCACHEFS_QUOTA
|
|
|
|
|
|
|
|
int bch2_quota_acct(struct bch_fs *, struct bch_qid, enum quota_counters,
|
|
|
|
s64, enum quota_acct_mode);
|
|
|
|
|
|
|
|
int bch2_quota_transfer(struct bch_fs *, unsigned, struct bch_qid,
|
2018-12-17 10:43:00 +00:00
|
|
|
struct bch_qid, u64, enum quota_acct_mode);
|
2017-03-17 06:18:50 +00:00
|
|
|
|
|
|
|
void bch2_fs_quota_exit(struct bch_fs *);
|
|
|
|
void bch2_fs_quota_init(struct bch_fs *);
|
|
|
|
int bch2_fs_quota_read(struct bch_fs *);
|
|
|
|
|
|
|
|
extern const struct quotactl_ops bch2_quotactl_operations;
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
static inline int bch2_quota_acct(struct bch_fs *c, struct bch_qid qid,
|
|
|
|
enum quota_counters counter, s64 v,
|
|
|
|
enum quota_acct_mode mode)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline int bch2_quota_transfer(struct bch_fs *c, unsigned qtypes,
|
|
|
|
struct bch_qid dst,
|
2018-12-17 10:43:00 +00:00
|
|
|
struct bch_qid src, u64 space,
|
|
|
|
enum quota_acct_mode mode)
|
2017-03-17 06:18:50 +00:00
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void bch2_fs_quota_exit(struct bch_fs *c) {}
|
|
|
|
static inline void bch2_fs_quota_init(struct bch_fs *c) {}
|
|
|
|
static inline int bch2_fs_quota_read(struct bch_fs *c) { return 0; }
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* _BCACHEFS_QUOTA_H */
|