btrfs: rename fs_info argument to fs_private
fs_info is commonly used to represent struct fs_info *, rename to fs_private to avoid confusion. Signed-off-by: Anand Jain <anand.jain@oracle.com> Reviewed-by: David Sterba <dsterba@suse.com> Signed-off-by: David Sterba <dsterba@suse.com>
This commit is contained in:
parent
3dcf96c7b9
commit
419a6f30fd
|
@ -419,10 +419,10 @@ const struct xattr_handler *btrfs_xattr_handlers[] = {
|
|||
};
|
||||
|
||||
static int btrfs_initxattrs(struct inode *inode,
|
||||
const struct xattr *xattr_array, void *fs_info)
|
||||
const struct xattr *xattr_array, void *fs_private)
|
||||
{
|
||||
struct btrfs_trans_handle *trans = fs_private;
|
||||
const struct xattr *xattr;
|
||||
struct btrfs_trans_handle *trans = fs_info;
|
||||
unsigned int nofs_flag;
|
||||
char *name;
|
||||
int err = 0;
|
||||
|
|
Loading…
Reference in New Issue