Commit cd31af15 authored by Anand Jain's avatar Anand Jain Committed by David Sterba
Browse files

btrfs: export btrfs_set_prop



Make btrfs_set_prop() a non-static function, so that it can be called
from btrfs_ioctl_setflags(). We need btrfs_set_prop() instead of
btrfs_set_prop_trans() so that we can use the transaction which is
already started in the current thread.

Signed-off-by: default avatarAnand Jain <anand.jain@oracle.com>
Reviewed-by: default avatarDavid Sterba <dsterba@suse.com>
Signed-off-by: default avatarDavid Sterba <dsterba@suse.com>
parent f22125e5
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -72,7 +72,7 @@ int btrfs_validate_prop(const char *name, const char *value, size_t value_len)
	return handler->validate(value, value_len);
}

static int btrfs_set_prop(struct btrfs_trans_handle *trans, struct inode *inode,
int btrfs_set_prop(struct btrfs_trans_handle *trans, struct inode *inode,
		   const char *name, const char *value, size_t value_len,
		   int flags)
{
+3 −0
Original line number Diff line number Diff line
@@ -12,6 +12,9 @@ void __init btrfs_props_init(void);

int btrfs_set_prop_trans(struct inode *inode, const char *name,
			 const char *value, size_t value_len, int flags);
int btrfs_set_prop(struct btrfs_trans_handle *trans, struct inode *inode,
		   const char *name, const char *value, size_t value_len,
		   int flags);
int btrfs_validate_prop(const char *name, const char *value, size_t value_len);

int btrfs_load_inode_props(struct inode *inode, struct btrfs_path *path);