public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* RE: [PATCH] make 2.6 megaraid recognize intel vendor id
@ 2003-11-16  3:12 Tomita, Haruo
  2003-11-16  3:46 ` Vagn Scott
  2003-11-16  4:36 ` Matt Domsch
  0 siblings, 2 replies; 13+ messages in thread
From: Tomita, Haruo @ 2003-11-16  3:12 UTC (permalink / raw)
  To: Jeff Garzik; +Cc: Matt Domsch, Jason Holmes, linux-kernel, Tomita, Haruo

Hi Jeff

Jeff  wrote;

Jeff> I don't object to your patch, but I'm disappointed that 
Jeff> megaraid doesn't 
Jeff> use the normal PCI probing mechanism.
  
Matt> It's on their TODO list I know.  I've been pushing for that too.

Haruo> Is there any schedule changed into normal PCI probing mechanism?
 
Jeff> I apologize, I do not understand the question.  Would you be 
Jeff> kind enough to re-state another way, perhaps?

I'm sorry. 
Is there any schedule which releases the megaraid driver 
which changed the mechanism of a probe?

Thanks,
Haruo 

^ permalink raw reply	[flat|nested] 13+ messages in thread
* RE: [PATCH] make 2.6 megaraid recognize intel vendor id
@ 2003-11-16  2:45 Tomita, Haruo
  2003-11-16  2:50 ` Jeff Garzik
  0 siblings, 1 reply; 13+ messages in thread
From: Tomita, Haruo @ 2003-11-16  2:45 UTC (permalink / raw)
  To: Matt Domsch, Jeff Garzik; +Cc: Jason Holmes, linux-kernel, Tomita, Haruo

Matt wrote;

Jeff> I don't object to your patch, but I'm disappointed that 
Jeff> megaraid doesn't 
Jeff> use the normal PCI probing mechanism.
 
Matt> It's on their TODO list I know.  I've been pushing for that too.

Is there any schedule changed into normal PCI probing mechanism?
--
Haruo

^ permalink raw reply	[flat|nested] 13+ messages in thread
* RE: [PATCH] make 2.6 megaraid recognize intel vendor id
@ 2003-11-14 14:00 Mukker, Atul
  2003-11-14 14:01 ` Jeff Garzik
  0 siblings, 1 reply; 13+ messages in thread
From: Mukker, Atul @ 2003-11-14 14:00 UTC (permalink / raw)
  To: 'Matt Domsch', Jeff Garzik; +Cc: Jason Holmes, linux-kernel

Matt,
Can what is "normal PCI probing" mechanism.

Thanks
-Atul

> -----Original Message-----
> From: Matt Domsch [mailto:Matt_Domsch@dell.com]
> Sent: Thursday, November 13, 2003 4:36 PM
> To: Jeff Garzik
> Cc: Jason Holmes; linux-kernel@vger.kernel.org
> Subject: Re: [PATCH] make 2.6 megaraid recognize intel vendor id
> 
> 
> > ewwww.
> > 
> > I don't object to your patch, but I'm disappointed that 
> megaraid doesn't 
> > use the normal PCI probing mechanism.
> 
> It's on their TODO list I know.  I've been pushing for that too.
> 
> -- 
> Matt Domsch
> Sr. Software Engineer, Lead Engineer
> Dell Linux Solutions www.dell.com/linux
> Linux on Dell mailing lists @ http://lists.us.dell.com
> -
> To unsubscribe from this list: send the line "unsubscribe 
> linux-kernel" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> Please read the FAQ at  http://www.tux.org/lkml/
> 

^ permalink raw reply	[flat|nested] 13+ messages in thread
* [PATCH] make 2.6 megaraid recognize intel vendor id
@ 2003-11-13 17:14 Jason Holmes
  2003-11-13 19:04 ` Jeff Garzik
  0 siblings, 1 reply; 13+ messages in thread
From: Jason Holmes @ 2003-11-13 17:14 UTC (permalink / raw)
  To: linux-kernel

[-- Attachment #1: Type: text/plain, Size: 225 bytes --]

Hi,

The 2.4 megaraid driver recognizes the Intel PCI vendor id whereas the
2.6 driver does not.  The attached patch against 2.6.0-test9 adds the
missing two lines from the 2.4 driver to enable this.

Thanks,

--
Jason Holmes

[-- Attachment #2: 2.6.0-test9-megaraid.patch --]
[-- Type: text/plain, Size: 964 bytes --]

diff -uNr linux-2.6.0-test9.clean/drivers/scsi/megaraid.c linux-2.6.0-test9/drivers/scsi/megaraid.c
--- linux-2.6.0-test9.clean/drivers/scsi/megaraid.c	Sat Oct 25 14:42:42 2003
+++ linux-2.6.0-test9/drivers/scsi/megaraid.c	Thu Nov 13 06:58:04 2003
@@ -295,6 +295,7 @@
 		if( subsysvid && (subsysvid != AMI_SUBSYS_VID) &&
 				(subsysvid != DELL_SUBSYS_VID) &&
 				(subsysvid != HP_SUBSYS_VID) &&
+				(subsysvid != INTEL_SUBSYS_VID) &&
 				(subsysvid != LSI_SUBSYS_VID) ) continue;
 
 
diff -uNr linux-2.6.0-test9.clean/drivers/scsi/megaraid.h linux-2.6.0-test9/drivers/scsi/megaraid.h
--- linux-2.6.0-test9.clean/drivers/scsi/megaraid.h	Sat Oct 25 14:43:42 2003
+++ linux-2.6.0-test9/drivers/scsi/megaraid.h	Thu Nov 13 06:56:20 2003
@@ -82,6 +82,7 @@
 #define DELL_SUBSYS_VID			0x1028
 #define	HP_SUBSYS_VID			0x103C
 #define LSI_SUBSYS_VID			0x1000
+#define INTEL_SUBSYS_VID		0x8086
 
 #define HBA_SIGNATURE	      		0x3344
 #define HBA_SIGNATURE_471	  	0xCCCC

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

end of thread, other threads:[~2003-11-19 19:13 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2003-11-16  3:12 [PATCH] make 2.6 megaraid recognize intel vendor id Tomita, Haruo
2003-11-16  3:46 ` Vagn Scott
2003-11-16  4:36 ` Matt Domsch
  -- strict thread matches above, loose matches on Subject: below --
2003-11-16  2:45 Tomita, Haruo
2003-11-16  2:50 ` Jeff Garzik
2003-11-14 14:00 Mukker, Atul
2003-11-14 14:01 ` Jeff Garzik
2003-11-13 17:14 Jason Holmes
2003-11-13 19:04 ` Jeff Garzik
2003-11-13 21:35   ` Matt Domsch
2003-11-19 13:16     ` Christoph Hellwig
2003-11-19 16:39       ` Jason Holmes
2003-11-19 19:13       ` Sam Ravnborg

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