diff options
author | Kent Overstreet <kent.overstreet@gmail.com> | 2017-01-08 00:13:18 -0900 |
---|---|---|
committer | Kent Overstreet <kent.overstreet@gmail.com> | 2017-01-20 09:07:08 -0900 |
commit | b33fc8298f7e13226b9895abc57c9bfce5e3fa2d (patch) | |
tree | a3d2a5a909b6372f7777c1c5c18cef5f81d123a9 /libbcache/xattr.h | |
parent | 7f4191a202ea4558ca2d5eb8a47daea33c9999c7 (diff) |
bcache in userspace; userspace fsck
Diffstat (limited to 'libbcache/xattr.h')
-rw-r--r-- | libbcache/xattr.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/libbcache/xattr.h b/libbcache/xattr.h new file mode 100644 index 0000000..54eb920 --- /dev/null +++ b/libbcache/xattr.h @@ -0,0 +1,17 @@ +#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 */ |