public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [2.6 patch] drivers/scsi/dpt_i2o.c: remove dead code
@ 2006-10-08 23:16 Adrian Bunk
  2006-10-11 14:51 ` Alan Cox
  0 siblings, 1 reply; 4+ messages in thread
From: Adrian Bunk @ 2006-10-08 23:16 UTC (permalink / raw)
  To: Alan Cox; +Cc: linux-kernel, James.Bottomley, linux-scsi

The Coverity checker spotted this dead code introduced by
commit a07f353701acae77e023f6270e8af353b37af7c4.

Signed-off-by: Adrian Bunk <bunk@stusta.de>

--- linux-2.6/drivers/scsi/dpt_i2o.c.old	2006-10-09 00:28:41.000000000 +0200
+++ linux-2.6/drivers/scsi/dpt_i2o.c	2006-10-09 00:29:10.000000000 +0200
@@ -185,28 +185,26 @@
 
         /* search for all Adatpec I2O RAID cards */
 	while ((pDev = pci_get_device( PCI_DPT_VENDOR_ID, PCI_ANY_ID, pDev))) {
 		if(pDev->device == PCI_DPT_DEVICE_ID ||
 		   pDev->device == PCI_DPT_RAPTOR_DEVICE_ID){
 			if(adpt_install_hba(sht, pDev) ){
 				PERROR("Could not Init an I2O RAID device\n");
 				PERROR("Will not try to detect others.\n");
 				return hba_count-1;
 			}
 			pci_dev_get(pDev);
 		}
 	}
-	if (pDev)
-		pci_dev_put(pDev);
 
 	/* In INIT state, Activate IOPs */
 	for (pHba = hba_chain; pHba; pHba = pHba->next) {
 		// Activate does get status , init outbound, and get hrt
 		if (adpt_i2o_activate_hba(pHba) < 0) {
 			adpt_i2o_delete_hba(pHba);
 		}
 	}
 
 
 	/* Active IOPs in HOLD state */
 
 rebuild_sys_tab:


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

* Re: [2.6 patch] drivers/scsi/dpt_i2o.c: remove dead code
  2006-10-08 23:16 [2.6 patch] drivers/scsi/dpt_i2o.c: remove dead code Adrian Bunk
@ 2006-10-11 14:51 ` Alan Cox
  2006-10-11 14:52   ` Adrian Bunk
  0 siblings, 1 reply; 4+ messages in thread
From: Alan Cox @ 2006-10-11 14:51 UTC (permalink / raw)
  To: Adrian Bunk; +Cc: linux-kernel, James.Bottomley, linux-scsi

Ar Llu, 2006-10-09 am 01:16 +0200, ysgrifennodd Adrian Bunk:
> The Coverity checker spotted this dead code introduced by
> commit a07f353701acae77e023f6270e8af353b37af7c4.
> 
> Signed-off-by: Adrian Bunk <bunk@stusta.de>

Semi-NAK

Its not dead jim, its in the wrong location

>  	while ((pDev = pci_get_device( PCI_DPT_VENDOR_ID, PCI_ANY_ID, pDev))) {
>  		if(pDev->device == PCI_DPT_DEVICE_ID ||
>  		   pDev->device == PCI_DPT_RAPTOR_DEVICE_ID){
>  			if(adpt_install_hba(sht, pDev) ){
>  				PERROR("Could not Init an I2O RAID device\n");
>  				PERROR("Will not try to detect others.\n");

------------------------> pci_dev_put()

is needed there instead I think.


Been away so just catching up


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

* Re: [2.6 patch] drivers/scsi/dpt_i2o.c: remove dead code
  2006-10-11 14:51 ` Alan Cox
@ 2006-10-11 14:52   ` Adrian Bunk
  2006-10-11 17:45     ` Alan Cox
  0 siblings, 1 reply; 4+ messages in thread
From: Adrian Bunk @ 2006-10-11 14:52 UTC (permalink / raw)
  To: Alan Cox; +Cc: linux-kernel, James.Bottomley, linux-scsi

On Wed, Oct 11, 2006 at 03:51:40PM +0100, Alan Cox wrote:
> Ar Llu, 2006-10-09 am 01:16 +0200, ysgrifennodd Adrian Bunk:
> > The Coverity checker spotted this dead code introduced by
> > commit a07f353701acae77e023f6270e8af353b37af7c4.
> > 
> > Signed-off-by: Adrian Bunk <bunk@stusta.de>
> 
> Semi-NAK
> 
> Its not dead jim, its in the wrong location
> 
> >  	while ((pDev = pci_get_device( PCI_DPT_VENDOR_ID, PCI_ANY_ID, pDev))) {
> >  		if(pDev->device == PCI_DPT_DEVICE_ID ||
> >  		   pDev->device == PCI_DPT_RAPTOR_DEVICE_ID){
> >  			if(adpt_install_hba(sht, pDev) ){
> >  				PERROR("Could not Init an I2O RAID device\n");
> >  				PERROR("Will not try to detect others.\n");
> 
> ------------------------> pci_dev_put()
> 
> is needed there instead I think.
>...

The current code is:


        /* search for all Adatpec I2O RAID cards */
        while ((pDev = pci_get_device( PCI_DPT_VENDOR_ID, PCI_ANY_ID, pDev))) {
                if(pDev->device == PCI_DPT_DEVICE_ID ||
                   pDev->device == PCI_DPT_RAPTOR_DEVICE_ID){
                        if(adpt_install_hba(sht, pDev) ){
                                PERROR("Could not Init an I2O RAID device\n");
                                PERROR("Will not try to detect others.\n");
                                return hba_count-1;
                        }
                        pci_dev_get(pDev);
                }
        }
        if (pDev)
                pci_dev_put(pDev);


I don't see the point of the suggested place for the pci_dev_put()
since pci_dev_get() has never been executed in this case, or do I miss 
anything?


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] 4+ messages in thread

* Re: [2.6 patch] drivers/scsi/dpt_i2o.c: remove dead code
  2006-10-11 14:52   ` Adrian Bunk
@ 2006-10-11 17:45     ` Alan Cox
  0 siblings, 0 replies; 4+ messages in thread
From: Alan Cox @ 2006-10-11 17:45 UTC (permalink / raw)
  To: Adrian Bunk; +Cc: linux-kernel, James.Bottomley, linux-scsi

> I don't see the point of the suggested place for the pci_dev_put()
> since pci_dev_get() has never been executed in this case, or do I miss 
> anything?

Correct, thats what I get for being away and reading 4000 emails when I
get back

Alan


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

end of thread, other threads:[~2006-10-11 17:21 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-10-08 23:16 [2.6 patch] drivers/scsi/dpt_i2o.c: remove dead code Adrian Bunk
2006-10-11 14:51 ` Alan Cox
2006-10-11 14:52   ` Adrian Bunk
2006-10-11 17:45     ` Alan Cox

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox