diff options
author | Qu Wenruo <wqu@suse.com> | 2020-06-24 18:02:57 +0200 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2020-09-07 20:57:27 -0400 |
commit | 207011b81ea5a3b7c8d48e929847f33a09c0e786 (patch) | |
tree | 59ee74f83a97a7e67863d312ed3d853b33ea8586 /fs/btrfs/subvolume.c | |
parent | 33966de31fa698af8505fe99acc0298e565a60aa (diff) | |
download | u-boot-207011b81ea5a3b7c8d48e929847f33a09c0e786.tar.gz u-boot-207011b81ea5a3b7c8d48e929847f33a09c0e786.tar.bz2 u-boot-207011b81ea5a3b7c8d48e929847f33a09c0e786.zip |
fs: btrfs: Rename btrfs_root to __btrfs_root
This is to avoid naming conflicts between extent buffer based
btrfs_root.
Signed-off-by: Qu Wenruo <wqu@suse.com>
Reviewed-by: Marek BehĂșn <marek.behun@nic.cz>
Diffstat (limited to 'fs/btrfs/subvolume.c')
-rw-r--r-- | fs/btrfs/subvolume.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/btrfs/subvolume.c b/fs/btrfs/subvolume.c index fa5ef1e0ac..72b847b940 100644 --- a/fs/btrfs/subvolume.c +++ b/fs/btrfs/subvolume.c @@ -12,7 +12,7 @@ static int get_subvol_name(u64 subvolid, char *name, int max_len) { struct btrfs_root_ref rref; struct btrfs_inode_ref iref; - struct btrfs_root root; + struct __btrfs_root root; u64 dir; char tmp[BTRFS_NAME_LEN]; char *ptr; |