All of lore.kernel.org
 help / color / mirror / Atom feed
From: Alexandre Belloni <alexandre.belloni@free-electrons.com>
To: Takashi Iwai <tiwai@suse.de>
Cc: Julia Lawall <julia.lawall@lip6.fr>,
	alsa-devel@alsa-project.org, garsilva@embeddedor.com,
	arvind.yadav.cs@gmail.com, bhumirks@gmail.com,
	broonie@kernel.org, andriy.shevchenko@linux.intel.com,
	nicolas.ferre@microchip.com, perex@perex.cz,
	kernel-janitors@vger.kernel.org, linux-kernel@vger.kernel.org,
	Christophe JAILLET <christophe.jaillet@wanadoo.fr>
Subject: Re: [alsa-devel] [PATCH] ALSA: ac97c: Fix an error handling path in 'atmel_ac97c_probe()'
Date: Thu, 31 Aug 2017 12:19:51 +0200	[thread overview]
Message-ID: <20170831101951.hsr6mmovpktjkqak@piout.net> (raw)
In-Reply-To: <s5h7exkjb9v.wl-tiwai@suse.de>

On 31/08/2017 at 12:13:00 +0200, Takashi Iwai wrote:
> On Thu, 31 Aug 2017 11:56:16 +0200,
> Alexandre Belloni wrote:
> > 
> > On 31/08/2017 at 10:23:19 +0200, Julia Lawall wrote:
> > > 
> > > 
> > > On Thu, 31 Aug 2017, Alexandre Belloni wrote:
> > > 
> > > > On 31/08/2017 at 06:40:42 +0200, Christophe JAILLET wrote:
> > > > > If 'clk_prepare_enable()' fails, we must release some resources before
> > > > > returning. Add a new label in the existing error handling path and 'goto'
> > > > > there.
> > > > >
> > > > > Fixes: 260ea95cc027 ("ASoC: atmel: ac97c: Handle return value of clk_prepare_enable.")
> > > > > Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr>
> > > >
> > > > And here is the fallout of the stupid, brainless "fixing" of issues
> > > > reported by static analysis tools.
> > > >
> > > > This clk_prepare_enable will never fail. If it was going to fail, the
> > > > platform would never boot to a point were it is able to execute that
> > > > code. It is really annoying to have so much churn for absolutely 0
> > > > benefit.
> > > 
> > > Would it be more productive to put the code back like it was before, ie no
> > > return value and no check, and add a comment to the definition of
> > > clk_prepare_enable indicating that there are many case where the call
> > > cannot fail?  Grepping through the code suggests that it is about 50-50 on
> > > checking the return value or not doing so, which might suggest that
> > > checking the value is often not required.
> > > 
> > 
> > I'd say that it is often useless to test the value. I don't have any
> > problem with the test as it doesn't add much (at least it doesn't print
> > an error message). So it may stays here. What I'm really unhappy about
> > is people sending hundreds of similar, autogenerated patches to
> > maintainers without actually putting any thought into them. That put all
> > the burden on the maintainers to weed out the incorrect patches.
> 
> I share your concerns, e.g. the burden of maintenance is a problem.
> 
> But in this case, the original code looks really buggy.  If the test
> doesn't make sense, don't test it but give a proper comment from the
> beginning.  Instead, the current code does check the return value yet
> with the incorrect error path.
> 
> The proposed "fix" won't change any actual behavior in practice, which
> is useless, yes.  (And this is good -- at least it's safe to apply :)
> OTOH, the semantics is a different question, and the patch corrects
> it, which isn't so stupid, IMO.
> 

Agreed, I'm complaining about the original patch adding the test, not
the current patch that fixes it.


-- 
Alexandre Belloni, Free Electrons
Embedded Linux and Kernel engineering
http://free-electrons.com

WARNING: multiple messages have this Message-ID (diff)
From: Alexandre Belloni <alexandre.belloni@free-electrons.com>
To: Takashi Iwai <tiwai@suse.de>
Cc: Julia Lawall <julia.lawall@lip6.fr>,
	alsa-devel@alsa-project.org, garsilva@embeddedor.com,
	arvind.yadav.cs@gmail.com, bhumirks@gmail.com,
	broonie@kernel.org, andriy.shevchenko@linux.intel.com,
	nicolas.ferre@microchip.com, perex@perex.cz,
	kernel-janitors@vger.kernel.org, linux-kernel@vger.kernel.org,
	Christophe JAILLET <christophe.jaillet@wanadoo.fr>
Subject: Re: [alsa-devel] [PATCH] ALSA: ac97c: Fix an error handling path in 'atmel_ac97c_probe()'
Date: Thu, 31 Aug 2017 10:19:51 +0000	[thread overview]
Message-ID: <20170831101951.hsr6mmovpktjkqak@piout.net> (raw)
In-Reply-To: <s5h7exkjb9v.wl-tiwai@suse.de>

On 31/08/2017 at 12:13:00 +0200, Takashi Iwai wrote:
> On Thu, 31 Aug 2017 11:56:16 +0200,
> Alexandre Belloni wrote:
> > 
> > On 31/08/2017 at 10:23:19 +0200, Julia Lawall wrote:
> > > 
> > > 
> > > On Thu, 31 Aug 2017, Alexandre Belloni wrote:
> > > 
> > > > On 31/08/2017 at 06:40:42 +0200, Christophe JAILLET wrote:
> > > > > If 'clk_prepare_enable()' fails, we must release some resources before
> > > > > returning. Add a new label in the existing error handling path and 'goto'
> > > > > there.
> > > > >
> > > > > Fixes: 260ea95cc027 ("ASoC: atmel: ac97c: Handle return value of clk_prepare_enable.")
> > > > > Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr>
> > > >
> > > > And here is the fallout of the stupid, brainless "fixing" of issues
> > > > reported by static analysis tools.
> > > >
> > > > This clk_prepare_enable will never fail. If it was going to fail, the
> > > > platform would never boot to a point were it is able to execute that
> > > > code. It is really annoying to have so much churn for absolutely 0
> > > > benefit.
> > > 
> > > Would it be more productive to put the code back like it was before, ie no
> > > return value and no check, and add a comment to the definition of
> > > clk_prepare_enable indicating that there are many case where the call
> > > cannot fail?  Grepping through the code suggests that it is about 50-50 on
> > > checking the return value or not doing so, which might suggest that
> > > checking the value is often not required.
> > > 
> > 
> > I'd say that it is often useless to test the value. I don't have any
> > problem with the test as it doesn't add much (at least it doesn't print
> > an error message). So it may stays here. What I'm really unhappy about
> > is people sending hundreds of similar, autogenerated patches to
> > maintainers without actually putting any thought into them. That put all
> > the burden on the maintainers to weed out the incorrect patches.
> 
> I share your concerns, e.g. the burden of maintenance is a problem.
> 
> But in this case, the original code looks really buggy.  If the test
> doesn't make sense, don't test it but give a proper comment from the
> beginning.  Instead, the current code does check the return value yet
> with the incorrect error path.
> 
> The proposed "fix" won't change any actual behavior in practice, which
> is useless, yes.  (And this is good -- at least it's safe to apply :)
> OTOH, the semantics is a different question, and the patch corrects
> it, which isn't so stupid, IMO.
> 

Agreed, I'm complaining about the original patch adding the test, not
the current patch that fixes it.


-- 
Alexandre Belloni, Free Electrons
Embedded Linux and Kernel engineering
http://free-electrons.com

  reply	other threads:[~2017-08-31 10:20 UTC|newest]

Thread overview: 55+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-08-31  4:40 [PATCH] ALSA: ac97c: Fix an error handling path in 'atmel_ac97c_probe()' Christophe JAILLET
2017-08-31  4:40 ` Christophe JAILLET
2017-08-31  4:40 ` Christophe JAILLET
2017-08-31  8:10 ` [alsa-devel] " Alexandre Belloni
2017-08-31  8:10   ` Alexandre Belloni
2017-08-31  8:10   ` [alsa-devel] " Alexandre Belloni
2017-08-31  8:23   ` Julia Lawall
2017-08-31  8:23     ` Julia Lawall
2017-08-31  8:23     ` [alsa-devel] " Julia Lawall
2017-08-31  9:04     ` Andy Shevchenko
2017-08-31  9:04       ` Andy Shevchenko
2017-08-31  9:04       ` [alsa-devel] " Andy Shevchenko
2017-08-31  9:35       ` Alexandre Belloni
2017-08-31  9:35         ` Alexandre Belloni
2017-08-31  9:38         ` Andy Shevchenko
2017-08-31  9:38           ` Andy Shevchenko
2017-08-31  9:57           ` Alexandre Belloni
2017-08-31  9:57             ` Alexandre Belloni
2017-08-31  9:57             ` [alsa-devel] " Alexandre Belloni
2017-08-31  9:56     ` Alexandre Belloni
2017-08-31  9:56       ` Alexandre Belloni
2017-08-31  9:56       ` [alsa-devel] " Alexandre Belloni
2017-08-31 10:13       ` Takashi Iwai
2017-08-31 10:13         ` Takashi Iwai
2017-08-31 10:13         ` [alsa-devel] " Takashi Iwai
2017-08-31 10:19         ` Alexandre Belloni [this message]
2017-08-31 10:19           ` Alexandre Belloni
2017-08-31 10:23         ` Takashi Iwai
2017-08-31 10:23           ` Takashi Iwai
2017-08-31 10:23           ` Takashi Iwai
2017-08-31 10:37           ` Mark Brown
2017-08-31 10:37             ` Mark Brown
2017-08-31 10:37             ` [alsa-devel] " Mark Brown
2017-08-31 10:49             ` Takashi Iwai
2017-08-31 10:49               ` Takashi Iwai
2017-08-31 10:19   ` Mark Brown
2017-08-31 10:19     ` Mark Brown
2017-08-31 10:19     ` [alsa-devel] " Mark Brown
2017-08-31 10:31     ` Takashi Iwai
2017-08-31 10:31       ` Takashi Iwai
2017-08-31 10:31       ` [alsa-devel] " Takashi Iwai
2017-08-31 10:38       ` Mark Brown
2017-08-31 10:38         ` Mark Brown
2017-08-31 10:38         ` [alsa-devel] " Mark Brown
2017-08-31 19:08         ` Christophe JAILLET
2017-08-31 19:08           ` Christophe JAILLET
2017-08-31 19:08           ` Christophe JAILLET
2017-08-31 20:50           ` Alexandre Belloni
2017-08-31 20:50             ` Alexandre Belloni
2017-08-31 21:07             ` Julia Lawall
2017-08-31 21:07               ` Julia Lawall
2017-08-31 21:07               ` Julia Lawall
2017-08-31 11:55 ` Applied "ALSA: ac97c: Fix an error handling path in 'atmel_ac97c_probe()'" to the asoc tree Mark Brown
2017-08-31 11:55   ` Mark Brown
2017-08-31 11:55   ` Mark Brown

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20170831101951.hsr6mmovpktjkqak@piout.net \
    --to=alexandre.belloni@free-electrons.com \
    --cc=alsa-devel@alsa-project.org \
    --cc=andriy.shevchenko@linux.intel.com \
    --cc=arvind.yadav.cs@gmail.com \
    --cc=bhumirks@gmail.com \
    --cc=broonie@kernel.org \
    --cc=christophe.jaillet@wanadoo.fr \
    --cc=garsilva@embeddedor.com \
    --cc=julia.lawall@lip6.fr \
    --cc=kernel-janitors@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=nicolas.ferre@microchip.com \
    --cc=perex@perex.cz \
    --cc=tiwai@suse.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.