mirror of
https://github.com/koverstreet/bcachefs-tools.git
synced 2025-02-09 00:00:04 +03:00
18 lines
481 B
C
18 lines
481 B
C
#ifndef _BCACHE_XATTR_H
|
|
#define _BCACHE_XATTR_H
|
|
|
|
extern const struct bkey_ops bch_bkey_xattr_ops;
|
|
|
|
struct dentry;
|
|
struct xattr_handler;
|
|
|
|
int bch_xattr_get(struct cache_set *, struct inode *,
|
|
const char *, void *, size_t, int);
|
|
int bch_xattr_set(struct cache_set *, struct inode *,
|
|
const char *, const void *, size_t, int, int);
|
|
ssize_t bch_xattr_list(struct dentry *, char *, size_t);
|
|
|
|
extern const struct xattr_handler *bch_xattr_handlers[];
|
|
|
|
#endif /* _BCACHE_XATTR_H */
|