mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-15 08:14:15 +08:00
6fed42bb77
To implement snapshots, we need every filesystem btree operation (every btree operation without a subvolume) to start by looking up the subvolume and getting the current snapshot ID, with bch2_subvolume_get_snapshot() - then, that snapshot ID is used for doing btree lookups in BTREE_ITER_FILTER_SNAPSHOTS mode. This patch adds those bch2_subvolume_get_snapshot() calls, and also switches to passing around a subvol_inum instead of just an inode number. Signed-off-by: Kent Overstreet <kent.overstreet@gmail.com>
51 lines
1.3 KiB
C
51 lines
1.3 KiB
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#ifndef _BCACHEFS_XATTR_H
|
|
#define _BCACHEFS_XATTR_H
|
|
|
|
#include "str_hash.h"
|
|
|
|
extern const struct bch_hash_desc bch2_xattr_hash_desc;
|
|
|
|
const char *bch2_xattr_invalid(const struct bch_fs *, struct bkey_s_c);
|
|
void bch2_xattr_to_text(struct printbuf *, struct bch_fs *, struct bkey_s_c);
|
|
|
|
#define bch2_bkey_ops_xattr (struct bkey_ops) { \
|
|
.key_invalid = bch2_xattr_invalid, \
|
|
.val_to_text = bch2_xattr_to_text, \
|
|
}
|
|
|
|
static inline unsigned xattr_val_u64s(unsigned name_len, unsigned val_len)
|
|
{
|
|
return DIV_ROUND_UP(offsetof(struct bch_xattr, x_name) +
|
|
name_len + val_len, sizeof(u64));
|
|
}
|
|
|
|
#define xattr_val(_xattr) \
|
|
((void *) (_xattr)->x_name + (_xattr)->x_name_len)
|
|
|
|
struct xattr_search_key {
|
|
u8 type;
|
|
struct qstr name;
|
|
};
|
|
|
|
#define X_SEARCH(_type, _name, _len) ((struct xattr_search_key) \
|
|
{ .type = _type, .name = QSTR_INIT(_name, _len) })
|
|
|
|
struct dentry;
|
|
struct xattr_handler;
|
|
struct bch_hash_info;
|
|
struct bch_inode_info;
|
|
|
|
int bch2_xattr_get(struct bch_fs *, struct bch_inode_info *,
|
|
const char *, void *, size_t, int);
|
|
|
|
int bch2_xattr_set(struct btree_trans *, subvol_inum,
|
|
const struct bch_hash_info *,
|
|
const char *, const void *, size_t, int, int);
|
|
|
|
ssize_t bch2_xattr_list(struct dentry *, char *, size_t);
|
|
|
|
extern const struct xattr_handler *bch2_xattr_handlers[];
|
|
|
|
#endif /* _BCACHEFS_XATTR_H */
|