public inbox for linux-scsi@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH][SCSI] hptiop: add more PCI device IDs
@ 2008-07-25  5:29 HighPoint Linux Team
  2008-07-29  7:34 ` Andrew Morton
  0 siblings, 1 reply; 5+ messages in thread
From: HighPoint Linux Team @ 2008-07-25  5:29 UTC (permalink / raw)
  To: Andrew Morton; +Cc: James.Bottomley, linux-scsi

Add PCI device ID for new adapter models.

Signed-off-by: HighPoint Linux Team <linux@highpoint-tech.com>
---

 drivers/scsi/hptiop.c |    7 +++++++
 1 file changed, 7 insertions(+)

diff -purN linux-2.6.26-rc8/drivers/scsi/hptiop.c linux-2.6.26-rc8-hpt/drivers/scsi/hptiop.c
--- linux-2.6.26-rc8/drivers/scsi/hptiop.c	2008-06-25 09:58:20.000000000 +0800
+++ linux-2.6.26-rc8-hpt/drivers/scsi/hptiop.c	2008-07-24 15:09:50.000000000 +0800
@@ -1249,6 +1249,13 @@ static struct pci_device_id hptiop_id_ta
 	{ PCI_VDEVICE(TTI, 0x3522), (kernel_ulong_t)&hptiop_itl_ops },
 	{ PCI_VDEVICE(TTI, 0x3410), (kernel_ulong_t)&hptiop_itl_ops },
 	{ PCI_VDEVICE(TTI, 0x3540), (kernel_ulong_t)&hptiop_itl_ops },
+	{ PCI_VDEVICE(TTI, 0x3530), (kernel_ulong_t)&hptiop_itl_ops },
+	{ PCI_VDEVICE(TTI, 0x3560), (kernel_ulong_t)&hptiop_itl_ops },
+	{ PCI_VDEVICE(TTI, 0x4322), (kernel_ulong_t)&hptiop_itl_ops },
+	{ PCI_VDEVICE(TTI, 0x4210), (kernel_ulong_t)&hptiop_itl_ops },
+	{ PCI_VDEVICE(TTI, 0x4211), (kernel_ulong_t)&hptiop_itl_ops },
+	{ PCI_VDEVICE(TTI, 0x4310), (kernel_ulong_t)&hptiop_itl_ops },
+	{ PCI_VDEVICE(TTI, 0x4311), (kernel_ulong_t)&hptiop_itl_ops },
 	{ PCI_VDEVICE(TTI, 0x3120), (kernel_ulong_t)&hptiop_mv_ops },
 	{ PCI_VDEVICE(TTI, 0x3122), (kernel_ulong_t)&hptiop_mv_ops },
 	{ PCI_VDEVICE(TTI, 0x3020), (kernel_ulong_t)&hptiop_mv_ops },


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

* Re: [PATCH][SCSI] hptiop: add more PCI device IDs
  2008-07-25  5:29 [PATCH][SCSI] hptiop: add more PCI device IDs HighPoint Linux Team
@ 2008-07-29  7:34 ` Andrew Morton
  2008-07-29  7:52   ` HighPoint Linux Team
  0 siblings, 1 reply; 5+ messages in thread
From: Andrew Morton @ 2008-07-29  7:34 UTC (permalink / raw)
  To: HighPoint Linux Team; +Cc: James.Bottomley, linux-scsi, stable

On Fri, 25 Jul 2008 13:29:24 +0800 HighPoint Linux Team <linux@highpoint-tech.com> wrote:

> Add PCI device ID for new adapter models.
> 
> Signed-off-by: HighPoint Linux Team <linux@highpoint-tech.com>
> ---
> 
>  drivers/scsi/hptiop.c |    7 +++++++
>  1 file changed, 7 insertions(+)
> 
> diff -purN linux-2.6.26-rc8/drivers/scsi/hptiop.c linux-2.6.26-rc8-hpt/drivers/scsi/hptiop.c
> --- linux-2.6.26-rc8/drivers/scsi/hptiop.c	2008-06-25 09:58:20.000000000 +0800
> +++ linux-2.6.26-rc8-hpt/drivers/scsi/hptiop.c	2008-07-24 15:09:50.000000000 +0800
> @@ -1249,6 +1249,13 @@ static struct pci_device_id hptiop_id_ta
>  	{ PCI_VDEVICE(TTI, 0x3522), (kernel_ulong_t)&hptiop_itl_ops },
>  	{ PCI_VDEVICE(TTI, 0x3410), (kernel_ulong_t)&hptiop_itl_ops },
>  	{ PCI_VDEVICE(TTI, 0x3540), (kernel_ulong_t)&hptiop_itl_ops },
> +	{ PCI_VDEVICE(TTI, 0x3530), (kernel_ulong_t)&hptiop_itl_ops },
> +	{ PCI_VDEVICE(TTI, 0x3560), (kernel_ulong_t)&hptiop_itl_ops },
> +	{ PCI_VDEVICE(TTI, 0x4322), (kernel_ulong_t)&hptiop_itl_ops },
> +	{ PCI_VDEVICE(TTI, 0x4210), (kernel_ulong_t)&hptiop_itl_ops },
> +	{ PCI_VDEVICE(TTI, 0x4211), (kernel_ulong_t)&hptiop_itl_ops },
> +	{ PCI_VDEVICE(TTI, 0x4310), (kernel_ulong_t)&hptiop_itl_ops },
> +	{ PCI_VDEVICE(TTI, 0x4311), (kernel_ulong_t)&hptiop_itl_ops },
>  	{ PCI_VDEVICE(TTI, 0x3120), (kernel_ulong_t)&hptiop_mv_ops },
>  	{ PCI_VDEVICE(TTI, 0x3122), (kernel_ulong_t)&hptiop_mv_ops },
>  	{ PCI_VDEVICE(TTI, 0x3020), (kernel_ulong_t)&hptiop_mv_ops },

I assume that this patch makes new devices work, whereas they do not
work correctly in unpatched kernels, yes?

If so, then this patch should be backported into 2.6.25.x and 2.6.26.x.
Users of these kernels would presumably like their devices to work.

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

* Re: [PATCH][SCSI] hptiop: add more PCI device IDs
  2008-07-29  7:34 ` Andrew Morton
@ 2008-07-29  7:52   ` HighPoint Linux Team
  2008-07-31 16:50     ` [stable] " Greg KH
  0 siblings, 1 reply; 5+ messages in thread
From: HighPoint Linux Team @ 2008-07-29  7:52 UTC (permalink / raw)
  To: Andrew Morton; +Cc: James.Bottomley, linux-scsi, stable

At 2008/7/29 15:34, Andrew Morton wrote:
> On Fri, 25 Jul 2008 13:29:24 +0800 HighPoint Linux Team <linux@highpoint-tech.com> wrote:
>
>   
>> Add PCI device ID for new adapter models.
>>
>> Signed-off-by: HighPoint Linux Team <linux@highpoint-tech.com>
>> ---
>>
>>  drivers/scsi/hptiop.c |    7 +++++++
>>  1 file changed, 7 insertions(+)
>>
>> diff -purN linux-2.6.26-rc8/drivers/scsi/hptiop.c linux-2.6.26-rc8-hpt/drivers/scsi/hptiop.c
>> --- linux-2.6.26-rc8/drivers/scsi/hptiop.c	2008-06-25 09:58:20.000000000 +0800
>> +++ linux-2.6.26-rc8-hpt/drivers/scsi/hptiop.c	2008-07-24 15:09:50.000000000 +0800
>> @@ -1249,6 +1249,13 @@ static struct pci_device_id hptiop_id_ta
>>  	{ PCI_VDEVICE(TTI, 0x3522), (kernel_ulong_t)&hptiop_itl_ops },
>>  	{ PCI_VDEVICE(TTI, 0x3410), (kernel_ulong_t)&hptiop_itl_ops },
>>  	{ PCI_VDEVICE(TTI, 0x3540), (kernel_ulong_t)&hptiop_itl_ops },
>> +	{ PCI_VDEVICE(TTI, 0x3530), (kernel_ulong_t)&hptiop_itl_ops },
>> +	{ PCI_VDEVICE(TTI, 0x3560), (kernel_ulong_t)&hptiop_itl_ops },
>> +	{ PCI_VDEVICE(TTI, 0x4322), (kernel_ulong_t)&hptiop_itl_ops },
>> +	{ PCI_VDEVICE(TTI, 0x4210), (kernel_ulong_t)&hptiop_itl_ops },
>> +	{ PCI_VDEVICE(TTI, 0x4211), (kernel_ulong_t)&hptiop_itl_ops },
>> +	{ PCI_VDEVICE(TTI, 0x4310), (kernel_ulong_t)&hptiop_itl_ops },
>> +	{ PCI_VDEVICE(TTI, 0x4311), (kernel_ulong_t)&hptiop_itl_ops },
>>  	{ PCI_VDEVICE(TTI, 0x3120), (kernel_ulong_t)&hptiop_mv_ops },
>>  	{ PCI_VDEVICE(TTI, 0x3122), (kernel_ulong_t)&hptiop_mv_ops },
>>  	{ PCI_VDEVICE(TTI, 0x3020), (kernel_ulong_t)&hptiop_mv_ops },
>>     
>
> I assume that this patch makes new devices work, whereas they do not
> work correctly in unpatched kernels, yes?
>
> If so, then this patch should be backported into 2.6.25.x and 2.6.26.x.
> Users of these kernels would presumably like their devices to work.
>   
Yes, this patch should also be backported to 2.6.25.x and 2.6.26.x.



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

* Re: [stable] [PATCH][SCSI] hptiop: add more PCI device IDs
  2008-07-29  7:52   ` HighPoint Linux Team
@ 2008-07-31 16:50     ` Greg KH
  2008-07-31 20:06       ` Andrew Morton
  0 siblings, 1 reply; 5+ messages in thread
From: Greg KH @ 2008-07-31 16:50 UTC (permalink / raw)
  To: HighPoint Linux Team; +Cc: Andrew Morton, James.Bottomley, stable, linux-scsi

On Tue, Jul 29, 2008 at 03:52:29PM +0800, HighPoint Linux Team wrote:
> At 2008/7/29 15:34, Andrew Morton wrote:
> > On Fri, 25 Jul 2008 13:29:24 +0800 HighPoint Linux Team <linux@highpoint-tech.com> wrote:
> >
> >   
> >> Add PCI device ID for new adapter models.
> >>
> >> Signed-off-by: HighPoint Linux Team <linux@highpoint-tech.com>
> >> ---
> >>
> >>  drivers/scsi/hptiop.c |    7 +++++++
> >>  1 file changed, 7 insertions(+)
> >>
> >> diff -purN linux-2.6.26-rc8/drivers/scsi/hptiop.c linux-2.6.26-rc8-hpt/drivers/scsi/hptiop.c
> >> --- linux-2.6.26-rc8/drivers/scsi/hptiop.c	2008-06-25 09:58:20.000000000 +0800
> >> +++ linux-2.6.26-rc8-hpt/drivers/scsi/hptiop.c	2008-07-24 15:09:50.000000000 +0800
> >> @@ -1249,6 +1249,13 @@ static struct pci_device_id hptiop_id_ta
> >>  	{ PCI_VDEVICE(TTI, 0x3522), (kernel_ulong_t)&hptiop_itl_ops },
> >>  	{ PCI_VDEVICE(TTI, 0x3410), (kernel_ulong_t)&hptiop_itl_ops },
> >>  	{ PCI_VDEVICE(TTI, 0x3540), (kernel_ulong_t)&hptiop_itl_ops },
> >> +	{ PCI_VDEVICE(TTI, 0x3530), (kernel_ulong_t)&hptiop_itl_ops },
> >> +	{ PCI_VDEVICE(TTI, 0x3560), (kernel_ulong_t)&hptiop_itl_ops },
> >> +	{ PCI_VDEVICE(TTI, 0x4322), (kernel_ulong_t)&hptiop_itl_ops },
> >> +	{ PCI_VDEVICE(TTI, 0x4210), (kernel_ulong_t)&hptiop_itl_ops },
> >> +	{ PCI_VDEVICE(TTI, 0x4211), (kernel_ulong_t)&hptiop_itl_ops },
> >> +	{ PCI_VDEVICE(TTI, 0x4310), (kernel_ulong_t)&hptiop_itl_ops },
> >> +	{ PCI_VDEVICE(TTI, 0x4311), (kernel_ulong_t)&hptiop_itl_ops },
> >>  	{ PCI_VDEVICE(TTI, 0x3120), (kernel_ulong_t)&hptiop_mv_ops },
> >>  	{ PCI_VDEVICE(TTI, 0x3122), (kernel_ulong_t)&hptiop_mv_ops },
> >>  	{ PCI_VDEVICE(TTI, 0x3020), (kernel_ulong_t)&hptiop_mv_ops },
> >>     
> >
> > I assume that this patch makes new devices work, whereas they do not
> > work correctly in unpatched kernels, yes?
> >
> > If so, then this patch should be backported into 2.6.25.x and 2.6.26.x.
> > Users of these kernels would presumably like their devices to work.
> >   
> Yes, this patch should also be backported to 2.6.25.x and 2.6.26.x.

What is the git commit id for this patch in Linus's tree?  I couldn't
find it when I last looked.

thanks,

greg k-h

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

* Re: [stable] [PATCH][SCSI] hptiop: add more PCI device IDs
  2008-07-31 16:50     ` [stable] " Greg KH
@ 2008-07-31 20:06       ` Andrew Morton
  0 siblings, 0 replies; 5+ messages in thread
From: Andrew Morton @ 2008-07-31 20:06 UTC (permalink / raw)
  To: Greg KH; +Cc: linux, James.Bottomley, stable, linux-scsi

On Thu, 31 Jul 2008 09:50:50 -0700
Greg KH <greg@kroah.com> wrote:

> On Tue, Jul 29, 2008 at 03:52:29PM +0800, HighPoint Linux Team wrote:
> > At 2008/7/29 15:34, Andrew Morton wrote:
> > > On Fri, 25 Jul 2008 13:29:24 +0800 HighPoint Linux Team <linux@highpoint-tech.com> wrote:
> > >
> > >   
> > >> Add PCI device ID for new adapter models.
> > >>
> > >> Signed-off-by: HighPoint Linux Team <linux@highpoint-tech.com>
> > >> ---
> > >>
> > >>  drivers/scsi/hptiop.c |    7 +++++++
> > >>  1 file changed, 7 insertions(+)
> > >>
> > >> diff -purN linux-2.6.26-rc8/drivers/scsi/hptiop.c linux-2.6.26-rc8-hpt/drivers/scsi/hptiop.c
> > >> --- linux-2.6.26-rc8/drivers/scsi/hptiop.c	2008-06-25 09:58:20.000000000 +0800
> > >> +++ linux-2.6.26-rc8-hpt/drivers/scsi/hptiop.c	2008-07-24 15:09:50.000000000 +0800
> > >> @@ -1249,6 +1249,13 @@ static struct pci_device_id hptiop_id_ta
> > >>  	{ PCI_VDEVICE(TTI, 0x3522), (kernel_ulong_t)&hptiop_itl_ops },
> > >>  	{ PCI_VDEVICE(TTI, 0x3410), (kernel_ulong_t)&hptiop_itl_ops },
> > >>  	{ PCI_VDEVICE(TTI, 0x3540), (kernel_ulong_t)&hptiop_itl_ops },
> > >> +	{ PCI_VDEVICE(TTI, 0x3530), (kernel_ulong_t)&hptiop_itl_ops },
> > >> +	{ PCI_VDEVICE(TTI, 0x3560), (kernel_ulong_t)&hptiop_itl_ops },
> > >> +	{ PCI_VDEVICE(TTI, 0x4322), (kernel_ulong_t)&hptiop_itl_ops },
> > >> +	{ PCI_VDEVICE(TTI, 0x4210), (kernel_ulong_t)&hptiop_itl_ops },
> > >> +	{ PCI_VDEVICE(TTI, 0x4211), (kernel_ulong_t)&hptiop_itl_ops },
> > >> +	{ PCI_VDEVICE(TTI, 0x4310), (kernel_ulong_t)&hptiop_itl_ops },
> > >> +	{ PCI_VDEVICE(TTI, 0x4311), (kernel_ulong_t)&hptiop_itl_ops },
> > >>  	{ PCI_VDEVICE(TTI, 0x3120), (kernel_ulong_t)&hptiop_mv_ops },
> > >>  	{ PCI_VDEVICE(TTI, 0x3122), (kernel_ulong_t)&hptiop_mv_ops },
> > >>  	{ PCI_VDEVICE(TTI, 0x3020), (kernel_ulong_t)&hptiop_mv_ops },
> > >>     
> > >
> > > I assume that this patch makes new devices work, whereas they do not
> > > work correctly in unpatched kernels, yes?
> > >
> > > If so, then this patch should be backported into 2.6.25.x and 2.6.26.x.
> > > Users of these kernels would presumably like their devices to work.
> > >   
> > Yes, this patch should also be backported to 2.6.25.x and 2.6.26.x.
> 
> What is the git commit id for this patch in Linus's tree?  I couldn't
> find it when I last looked.
> 

It's presently mastered in James's git-scsi-rc-fixes tree, so I'd
expect it to turn up in mainline soonish.


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

end of thread, other threads:[~2008-07-31 20:07 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-07-25  5:29 [PATCH][SCSI] hptiop: add more PCI device IDs HighPoint Linux Team
2008-07-29  7:34 ` Andrew Morton
2008-07-29  7:52   ` HighPoint Linux Team
2008-07-31 16:50     ` [stable] " Greg KH
2008-07-31 20:06       ` Andrew Morton

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