* [patch 13/30] nsp32_restart_autoscsi(): remove error check
@ 2007-08-10 21:50 akpm
2007-08-11 1:03 ` James Bottomley
0 siblings, 1 reply; 3+ messages in thread
From: akpm @ 2007-08-10 21:50 UTC (permalink / raw)
To: James.Bottomley; +Cc: linux-scsi, akpm, bunk, yokota
From: Adrian Bunk <bunk@stusta.de>
The Coverity checker noted that we'll anyway Oops later when we ran into
this condition - and the error check didn't prevent that.
Considering that the error condition shouldn't be possible, and we are
not able to handle it easily, this patch simply removes the pointless
error check.
Signed-off-by: Adrian Bunk <bunk@stusta.de>
Cc: <yokota@netlab.is.tsukuba.ac.jp>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
---
drivers/scsi/nsp32.c | 4 ----
1 files changed, 4 deletions(-)
diff -puN drivers/scsi/nsp32.c~nsp32_restart_autoscsi-remove-error-check drivers/scsi/nsp32.c
--- a/drivers/scsi/nsp32.c~nsp32_restart_autoscsi-remove-error-check
+++ a/drivers/scsi/nsp32.c
@@ -1905,10 +1905,6 @@ static void nsp32_restart_autoscsi(struc
nsp32_dbg(NSP32_DEBUG_RESTART, "enter");
- if (data->cur_target == NULL || data->cur_lunt == NULL) {
- nsp32_msg(KERN_ERR, "Target or Lun is invalid");
- }
-
/*
* set SYNC_REG
* Don't set BM_START_ADR before setting this register.
_
^ permalink raw reply [flat|nested] 3+ messages in thread* Re: [patch 13/30] nsp32_restart_autoscsi(): remove error check
2007-08-10 21:50 [patch 13/30] nsp32_restart_autoscsi(): remove error check akpm
@ 2007-08-11 1:03 ` James Bottomley
2007-08-11 2:25 ` Adrian Bunk
0 siblings, 1 reply; 3+ messages in thread
From: James Bottomley @ 2007-08-11 1:03 UTC (permalink / raw)
To: akpm; +Cc: linux-scsi, bunk, yokota
On Fri, 2007-08-10 at 14:50 -0700, akpm@linux-foundation.org wrote:
> From: Adrian Bunk <bunk@stusta.de>
>
> The Coverity checker noted that we'll anyway Oops later when we ran into
> this condition - and the error check didn't prevent that.
>
> Considering that the error condition shouldn't be possible, and we are
> not able to handle it easily, this patch simply removes the pointless
> error check.
>
> Signed-off-by: Adrian Bunk <bunk@stusta.de>
> Cc: <yokota@netlab.is.tsukuba.ac.jp>
> Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
> ---
>
> drivers/scsi/nsp32.c | 4 ----
> 1 files changed, 4 deletions(-)
>
> diff -puN drivers/scsi/nsp32.c~nsp32_restart_autoscsi-remove-error-check drivers/scsi/nsp32.c
> --- a/drivers/scsi/nsp32.c~nsp32_restart_autoscsi-remove-error-check
> +++ a/drivers/scsi/nsp32.c
> @@ -1905,10 +1905,6 @@ static void nsp32_restart_autoscsi(struc
>
> nsp32_dbg(NSP32_DEBUG_RESTART, "enter");
>
> - if (data->cur_target == NULL || data->cur_lunt == NULL) {
> - nsp32_msg(KERN_ERR, "Target or Lun is invalid");
> - }
> -
I disagree pretty strongly with this ... you're not removing an error
check, you're removing a warning printk. Before the driver would say
what the problem is and oops. After, it will oops and you won't
necessarily know why. I think that's a retrograde step.
James
^ permalink raw reply [flat|nested] 3+ messages in thread* Re: [patch 13/30] nsp32_restart_autoscsi(): remove error check
2007-08-11 1:03 ` James Bottomley
@ 2007-08-11 2:25 ` Adrian Bunk
0 siblings, 0 replies; 3+ messages in thread
From: Adrian Bunk @ 2007-08-11 2:25 UTC (permalink / raw)
To: James Bottomley; +Cc: akpm, linux-scsi, yokota
On Fri, Aug 10, 2007 at 09:03:52PM -0400, James Bottomley wrote:
> On Fri, 2007-08-10 at 14:50 -0700, akpm@linux-foundation.org wrote:
> > From: Adrian Bunk <bunk@stusta.de>
> >
> > The Coverity checker noted that we'll anyway Oops later when we ran into
> > this condition - and the error check didn't prevent that.
> >
> > Considering that the error condition shouldn't be possible, and we are
> > not able to handle it easily, this patch simply removes the pointless
> > error check.
> >
> > Signed-off-by: Adrian Bunk <bunk@stusta.de>
> > Cc: <yokota@netlab.is.tsukuba.ac.jp>
> > Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
> > ---
> >
> > drivers/scsi/nsp32.c | 4 ----
> > 1 files changed, 4 deletions(-)
> >
> > diff -puN drivers/scsi/nsp32.c~nsp32_restart_autoscsi-remove-error-check drivers/scsi/nsp32.c
> > --- a/drivers/scsi/nsp32.c~nsp32_restart_autoscsi-remove-error-check
> > +++ a/drivers/scsi/nsp32.c
> > @@ -1905,10 +1905,6 @@ static void nsp32_restart_autoscsi(struc
> >
> > nsp32_dbg(NSP32_DEBUG_RESTART, "enter");
> >
> > - if (data->cur_target == NULL || data->cur_lunt == NULL) {
> > - nsp32_msg(KERN_ERR, "Target or Lun is invalid");
> > - }
> > -
>
> I disagree pretty strongly with this ... you're not removing an error
> check, you're removing a warning printk. Before the driver would say
> what the problem is and oops. After, it will oops and you won't
> necessarily know why. I think that's a retrograde step.
"Target or Lun is invalid" isn't a precise problem description either.
But the main point is:
An Oops indicates a programming error in the kernel (or kernel
corruption), and for this purpose an Oops is a good error message.
We can't put printk()'s in front of all pointer dereferences in the
kernel.
Is there any legal way how any of these could be NULL at this point?
My impression was there isn't.
But if there is we don't need only a printk(), we'd need an error
handling that returns from the function without Oops'ing plus an error
handling in the caller.
> James
cu
Adrian
--
"Is there not promise of rain?" Ling Tan asked suddenly out
of the darkness. There had been need of rain for many days.
"Only a promise," Lao Er said.
Pearl S. Buck - Dragon Seed
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2007-08-11 2:25 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-08-10 21:50 [patch 13/30] nsp32_restart_autoscsi(): remove error check akpm
2007-08-11 1:03 ` James Bottomley
2007-08-11 2:25 ` Adrian Bunk
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox