Re: [PATCH] fs: btrfs: remove the usage of undeclared fs_mutex variable

2022-09-27 Thread Pankaj Raghav
> Which branch is the code based on? > I actually cloned it from u-boot github master. https://github.com/u-boot/u-boot/blob/f117c54cc83e3c519883edb5a48062644d38c443/fs/btrfs/disk-io.c#L785 > I don't believe it's upstream, as such compiling error should be exposed > very easily. > Actually, I

[PATCH] fs: btrfs: remove the usage of undeclared fs_mutex variable

2022-09-27 Thread Pankaj Raghav
This line probably got in by mistake as there is no fs_mutex member in the btrfs_fs_info struct. Signed-off-by: Pankaj Raghav --- fs/btrfs/disk-io.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/fs/btrfs/disk-io.c b/fs/btrfs/disk-io.c index 8043abc1bd..c80f8e8028 100644 --- a/fs/btrfs/dis

Re: [PATCH] fs: btrfs: remove the usage of undeclared fs_mutex variable

2022-09-27 Thread Qu Wenruo
On 2022/9/27 18:49, Pankaj Raghav wrote: Which branch is the code based on? I actually cloned it from u-boot github master. https://github.com/u-boot/u-boot/blob/f117c54cc83e3c519883edb5a48062644d38c443/fs/btrfs/disk-io.c#L785 I don't believe it's upstream, as such compiling error shoul

Re: [PATCH] fs: btrfs: remove the usage of undeclared fs_mutex variable

2022-09-27 Thread Qu Wenruo
On 2022/9/27 18:39, Qu Wenruo wrote: On 2022/9/27 17:55, Pankaj Raghav wrote: This line probably got in by mistake as there is no fs_mutex member in the btrfs_fs_info struct. Signed-off-by: Pankaj Raghav Which branch is the code based on? I don't believe it's upstream, as such compilin

Re: [PATCH] fs: btrfs: remove the usage of undeclared fs_mutex variable

2022-09-27 Thread Qu Wenruo
On 2022/9/27 17:55, Pankaj Raghav wrote: This line probably got in by mistake as there is no fs_mutex member in the btrfs_fs_info struct. Signed-off-by: Pankaj Raghav Which branch is the code based on? I don't believe it's upstream, as such compiling error should be exposed very easily.