linux-btrfs.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] btrfs: Use min() instead of doing it manually
@ 2021-12-27 11:34 Jiapeng Chong
  2021-12-27 11:49 ` Qu Wenruo
  0 siblings, 1 reply; 3+ messages in thread
From: Jiapeng Chong @ 2021-12-27 11:34 UTC (permalink / raw)
  To: clm; +Cc: josef, dsterba, linux-btrfs, linux-kernel, Jiapeng Chong, Abaci Robot

Eliminate following coccicheck warning:

./fs/btrfs/volumes.c:7768:13-14: WARNING opportunity for min().

Reported-by: Abaci Robot <abaci@linux.alibaba.com>
Signed-off-by: Jiapeng Chong <jiapeng.chong@linux.alibaba.com>
---
 fs/btrfs/volumes.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/fs/btrfs/volumes.c b/fs/btrfs/volumes.c
index 730355b55b42..dca3f0cedff9 100644
--- a/fs/btrfs/volumes.c
+++ b/fs/btrfs/volumes.c
@@ -7765,7 +7765,7 @@ static int btrfs_device_init_dev_stats(struct btrfs_device *device,
 			btrfs_dev_stat_set(device, i, 0);
 		device->dev_stats_valid = 1;
 		btrfs_release_path(path);
-		return ret < 0 ? ret : 0;
+		return min(ret, 0);
 	}
 	slot = path->slots[0];
 	eb = path->nodes[0];
-- 
2.20.1.7.g153144c


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] btrfs: Use min() instead of doing it manually
  2021-12-27 11:34 [PATCH] btrfs: Use min() instead of doing it manually Jiapeng Chong
@ 2021-12-27 11:49 ` Qu Wenruo
  2022-01-03 18:12   ` David Sterba
  0 siblings, 1 reply; 3+ messages in thread
From: Qu Wenruo @ 2021-12-27 11:49 UTC (permalink / raw)
  To: Jiapeng Chong, clm; +Cc: josef, dsterba, linux-btrfs, linux-kernel, Abaci Robot



On 2021/12/27 19:34, Jiapeng Chong wrote:
> Eliminate following coccicheck warning:
> 
> ./fs/btrfs/volumes.c:7768:13-14: WARNING opportunity for min().
> 
> Reported-by: Abaci Robot <abaci@linux.alibaba.com>
> Signed-off-by: Jiapeng Chong <jiapeng.chong@linux.alibaba.com>
> ---
>   fs/btrfs/volumes.c | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/fs/btrfs/volumes.c b/fs/btrfs/volumes.c
> index 730355b55b42..dca3f0cedff9 100644
> --- a/fs/btrfs/volumes.c
> +++ b/fs/btrfs/volumes.c
> @@ -7765,7 +7765,7 @@ static int btrfs_device_init_dev_stats(struct btrfs_device *device,
>   			btrfs_dev_stat_set(device, i, 0);
>   		device->dev_stats_valid = 1;
>   		btrfs_release_path(path);
> -		return ret < 0 ? ret : 0;
> +		return min(ret, 0);

Nope, please don't blindly follow whatever the static checker reports, 
but spend sometime on the code.

In this particular case, min(ret, 0) is not really making the code any 
easier to read.

The "if (ret)" branch means, either we got a critical error (ret < 0) or 
we didn't find the dev status item

For no dev status item case, it's no big deal and we can continue 
returning 0. For fatal error case, it mostly means the device tree is 
corrupted, and we return @ret directly.

Are you really thinking we're calculating a minimal value between 0 and ret?


And I have already stated that, there is no need to CC maintainers.
Especially you didn't even bother to check who is the one pushing the 
code to Linus.

Thanks,
Qu
>   	}
>   	slot = path->slots[0];
>   	eb = path->nodes[0];


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] btrfs: Use min() instead of doing it manually
  2021-12-27 11:49 ` Qu Wenruo
@ 2022-01-03 18:12   ` David Sterba
  0 siblings, 0 replies; 3+ messages in thread
From: David Sterba @ 2022-01-03 18:12 UTC (permalink / raw)
  To: Qu Wenruo
  Cc: Jiapeng Chong, clm, josef, dsterba, linux-btrfs, linux-kernel,
	Abaci Robot

On Mon, Dec 27, 2021 at 07:49:01PM +0800, Qu Wenruo wrote:
> 
> 
> On 2021/12/27 19:34, Jiapeng Chong wrote:
> > Eliminate following coccicheck warning:
> > 
> > ./fs/btrfs/volumes.c:7768:13-14: WARNING opportunity for min().
> > 
> > Reported-by: Abaci Robot <abaci@linux.alibaba.com>
> > Signed-off-by: Jiapeng Chong <jiapeng.chong@linux.alibaba.com>
> > ---
> >   fs/btrfs/volumes.c | 2 +-
> >   1 file changed, 1 insertion(+), 1 deletion(-)
> > 
> > diff --git a/fs/btrfs/volumes.c b/fs/btrfs/volumes.c
> > index 730355b55b42..dca3f0cedff9 100644
> > --- a/fs/btrfs/volumes.c
> > +++ b/fs/btrfs/volumes.c
> > @@ -7765,7 +7765,7 @@ static int btrfs_device_init_dev_stats(struct btrfs_device *device,
> >   			btrfs_dev_stat_set(device, i, 0);
> >   		device->dev_stats_valid = 1;
> >   		btrfs_release_path(path);
> > -		return ret < 0 ? ret : 0;
> > +		return min(ret, 0);
> 
> Nope, please don't blindly follow whatever the static checker reports, 
> but spend sometime on the code.
> 
> In this particular case, min(ret, 0) is not really making the code any 
> easier to read.
> 
> The "if (ret)" branch means, either we got a critical error (ret < 0) or 
> we didn't find the dev status item
> 
> For no dev status item case, it's no big deal and we can continue 
> returning 0. For fatal error case, it mostly means the device tree is 
> corrupted, and we return @ret directly.
> 
> Are you really thinking we're calculating a minimal value between 0 and ret?

That's probably the most important point. Although the expression could
be equivalent to calculating minimum, the code should read "if there was
an error, return it, otherwise return 0". Using min() for that obscures
that.

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2022-01-03 18:13 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-12-27 11:34 [PATCH] btrfs: Use min() instead of doing it manually Jiapeng Chong
2021-12-27 11:49 ` Qu Wenruo
2022-01-03 18:12   ` David Sterba

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).