diff options
author | Anand Jain <anand.jain@oracle.com> | 2019-04-12 04:02:56 -0400 |
---|---|---|
committer | David Sterba <dsterba@suse.com> | 2019-04-29 13:02:44 -0400 |
commit | 3e125a74fbc1938afd699ba9ba7f33801768bd0e (patch) | |
tree | 4ac4760bf06d61b0e1a81d3b84dce6811c836b3c /fs/btrfs/xattr.c | |
parent | 2d74fa3efcffe456d16833af118ffe0cb0ee6785 (diff) |
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 'fs/btrfs/xattr.c')
-rw-r--r-- | fs/btrfs/xattr.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/fs/btrfs/xattr.c b/fs/btrfs/xattr.c index fd1469ef55d6..b2b68676ec52 100644 --- a/fs/btrfs/xattr.c +++ b/fs/btrfs/xattr.c | |||
@@ -76,9 +76,8 @@ out: | |||
76 | return ret; | 76 | return ret; |
77 | } | 77 | } |
78 | 78 | ||
79 | static int btrfs_setxattr(struct btrfs_trans_handle *trans, | 79 | int btrfs_setxattr(struct btrfs_trans_handle *trans, struct inode *inode, |
80 | struct inode *inode, const char *name, | 80 | const char *name, const void *value, size_t size, int flags) |
81 | const void *value, size_t size, int flags) | ||
82 | { | 81 | { |
83 | struct btrfs_dir_item *di = NULL; | 82 | struct btrfs_dir_item *di = NULL; |
84 | struct btrfs_root *root = BTRFS_I(inode)->root; | 83 | struct btrfs_root *root = BTRFS_I(inode)->root; |