Linux 6.13-rc4
[linux.git] / fs / bcachefs / xattr.h
blobc188a5ad64cef6b69dd20f0c9794c42bae24d71b
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _BCACHEFS_XATTR_H
3 #define _BCACHEFS_XATTR_H
5 #include "str_hash.h"
7 extern const struct bch_hash_desc bch2_xattr_hash_desc;
9 int bch2_xattr_validate(struct bch_fs *, struct bkey_s_c, enum bch_validate_flags);
10 void bch2_xattr_to_text(struct printbuf *, struct bch_fs *, struct bkey_s_c);
12 #define bch2_bkey_ops_xattr ((struct bkey_ops) { \
13 .key_validate = bch2_xattr_validate, \
14 .val_to_text = bch2_xattr_to_text, \
15 .min_val_size = 8, \
18 static inline unsigned xattr_val_u64s(unsigned name_len, unsigned val_len)
20 return DIV_ROUND_UP(offsetof(struct bch_xattr, x_name) +
21 name_len + val_len, sizeof(u64));
24 #define xattr_val(_xattr) \
25 ((void *) (_xattr)->x_name + (_xattr)->x_name_len)
27 struct xattr_search_key {
28 u8 type;
29 struct qstr name;
32 #define X_SEARCH(_type, _name, _len) ((struct xattr_search_key) \
33 { .type = _type, .name = QSTR_INIT(_name, _len) })
35 struct dentry;
36 struct xattr_handler;
37 struct bch_hash_info;
38 struct bch_inode_info;
40 /* Exported for cmd_migrate.c in tools: */
41 int bch2_xattr_set(struct btree_trans *, subvol_inum,
42 struct bch_inode_unpacked *, const struct bch_hash_info *,
43 const char *, const void *, size_t, int, int);
45 ssize_t bch2_xattr_list(struct dentry *, char *, size_t);
47 extern const struct xattr_handler *bch2_xattr_handlers[];
49 #endif /* _BCACHEFS_XATTR_H */