diff options
author | Anand Jain <anand.jain@oracle.com> | 2019-04-12 10:02:56 +0200 |
---|---|---|
committer | David Sterba <dsterba@suse.com> | 2019-04-29 19:02:44 +0200 |
commit | 3e125a74fbc1938afd699ba9ba7f33801768bd0e (patch) | |
tree | 4ac4760bf06d61b0e1a81d3b84dce6811c836b3c /fs/btrfs/xattr.h | |
parent | btrfs: rename do_setxattr to btrfs_setxattr (diff) | |
download | linux-3e125a74fbc1938afd699ba9ba7f33801768bd0e.tar.xz linux-3e125a74fbc1938afd699ba9ba7f33801768bd0e.zip |
btrfs: export btrfs_setxattr
Preparatory patch, as we are going split the calls with and without
transaction to use the respective btrfs_setxattr() and
btrfs_setxattr_trans() functions. Export btrfs_setxattr() for calls
outside of xattr.c.
Signed-off-by: Anand Jain <anand.jain@oracle.com>
Reviewed-by: David Sterba <dsterba@suse.com>
Signed-off-by: David Sterba <dsterba@suse.com>
Diffstat (limited to '')
-rw-r--r-- | fs/btrfs/xattr.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/fs/btrfs/xattr.h b/fs/btrfs/xattr.h index 36d54a15cbfe..a95834cc3c04 100644 --- a/fs/btrfs/xattr.h +++ b/fs/btrfs/xattr.h @@ -12,6 +12,8 @@ extern const struct xattr_handler *btrfs_xattr_handlers[]; int btrfs_getxattr(struct inode *inode, const char *name, void *buffer, size_t size); +int btrfs_setxattr(struct btrfs_trans_handle *trans, struct inode *inode, + const char *name, const void *value, size_t size, int flags); int btrfs_setxattr_trans(struct btrfs_trans_handle *trans, struct inode *inode, const char *name, const void *value, size_t size, int flags); |