All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/3][KERNEL] base patches needed for romley
@ 2011-05-27 20:45 tom.zanussi
  2011-05-27 20:46 ` [PATCH 1/3][KERNEL] Remove extra struct page member from the buffer info structure tom.zanussi
                   ` (4 more replies)
  0 siblings, 5 replies; 13+ messages in thread
From: tom.zanussi @ 2011-05-27 20:45 UTC (permalink / raw)
  To: bruce.ashfield, rahul.saxena, kishore.k.bodke, yocto

From: Tom Zanussi <tom.zanussi@intel.com>

These upstreamed post-2.6.37 patches are needed by the romley BSP
for 2.6.37.

Note that I've removed the e-mail addresses from these posted patches,
but the git branch retains them.

Please pull into linux-yocto-2.6.37.

Thanks,

Tom

Pull URL: git://git.yoctoproject.org/linux-yocto-2.6.37-contrib
  Branch: tzanussi/romley-new-options-and-refactor-base
  Browse: http://git.yoctoproject.org/cgit.cgi/linux-yocto-2.6.37-contrib/log/?h=tzanussi/romley-new-options-and-refactor-base

Greg Rose (1):
  Remove extra struct page member from the buffer info structure

Seth Heasley (2):
  x86/PCI: irq and pci_ids patch for Intel Patsburg
  ahci: AHCI mode SATA patch for Intel Patsburg SATA RAID controller

 arch/x86/pci/irq.c        |    3 ++-
 drivers/ata/ahci.c        |    1 +
 drivers/net/igbvf/igbvf.h |    1 -
 include/linux/pci_ids.h   |    3 ++-
 4 files changed, 5 insertions(+), 3 deletions(-)



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

* [PATCH 1/3][KERNEL] Remove extra struct page member from the buffer info structure
  2011-05-27 20:45 [PATCH 0/3][KERNEL] base patches needed for romley tom.zanussi
@ 2011-05-27 20:46 ` tom.zanussi
  2011-05-27 20:46 ` [PATCH 2/3][KERNEL] x86/PCI: irq and pci_ids patch for Intel Patsburg tom.zanussi
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 13+ messages in thread
From: tom.zanussi @ 2011-05-27 20:46 UTC (permalink / raw)
  To: bruce.ashfield, rahul.saxena, kishore.k.bodke, yocto

From: Greg Rose

declaration.

commit b1d670f10e8078485884f0cf7e384d890909aeaa upstream

Reported-by: Andi Kleen
Signed-off-by: Greg Rose
Tested-by: Emil Tantilov
Signed-off-by: Jeff Kirsher
Integrated-by: Tom Zanussi
---
 drivers/net/igbvf/igbvf.h |    1 -
 1 files changed, 0 insertions(+), 1 deletions(-)

diff --git a/drivers/net/igbvf/igbvf.h b/drivers/net/igbvf/igbvf.h
index debeee2..f7ae284 100644
--- a/drivers/net/igbvf/igbvf.h
+++ b/drivers/net/igbvf/igbvf.h
@@ -126,7 +126,6 @@ struct igbvf_buffer {
 			unsigned int page_offset;
 		};
 	};
-	struct page *page;
 };
 
 union igbvf_desc {
-- 
1.7.0.4



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

* [PATCH 2/3][KERNEL] x86/PCI: irq and pci_ids patch for Intel Patsburg
  2011-05-27 20:45 [PATCH 0/3][KERNEL] base patches needed for romley tom.zanussi
  2011-05-27 20:46 ` [PATCH 1/3][KERNEL] Remove extra struct page member from the buffer info structure tom.zanussi
@ 2011-05-27 20:46 ` tom.zanussi
  2011-05-27 20:46 ` [PATCH 3/3] ahci: AHCI mode SATA patch for Intel Patsburg SATA RAID controller tom.zanussi
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 13+ messages in thread
From: tom.zanussi @ 2011-05-27 20:46 UTC (permalink / raw)
  To: bruce.ashfield, rahul.saxena, kishore.k.bodke, yocto

From: Seth Heasley

commit 9b444b36fee16d2aaae9cc91ce594ecb15d922a9 upstream

This patch adds an additional LPC Controller DeviceID for the Intel
Patsburg PCH.

Signed-off-by: Seth Heasley
Signed-off-by: Jesse Barnes
Integrated-by: Tom Zanussi
---
 arch/x86/pci/irq.c      |    3 ++-
 include/linux/pci_ids.h |    3 ++-
 2 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/arch/x86/pci/irq.c b/arch/x86/pci/irq.c
index 9f9bfb7..87e6c83 100644
--- a/arch/x86/pci/irq.c
+++ b/arch/x86/pci/irq.c
@@ -589,7 +589,8 @@ static __init int intel_router_probe(struct irq_router *r, struct pci_dev *route
 	case PCI_DEVICE_ID_INTEL_ICH10_1:
 	case PCI_DEVICE_ID_INTEL_ICH10_2:
 	case PCI_DEVICE_ID_INTEL_ICH10_3:
-	case PCI_DEVICE_ID_INTEL_PATSBURG_LPC:
+	case PCI_DEVICE_ID_INTEL_PATSBURG_LPC_0:
+	case PCI_DEVICE_ID_INTEL_PATSBURG_LPC_1:
 		r->name = "PIIX/ICH";
 		r->get = pirq_piix_get;
 		r->set = pirq_piix_set;
diff --git a/include/linux/pci_ids.h b/include/linux/pci_ids.h
index cb845c1..d830106 100644
--- a/include/linux/pci_ids.h
+++ b/include/linux/pci_ids.h
@@ -2468,7 +2468,8 @@
 #define PCI_DEVICE_ID_INTEL_COUGARPOINT_LPC_MIN	0x1c41
 #define PCI_DEVICE_ID_INTEL_COUGARPOINT_LPC_MAX	0x1c5f
 #define PCI_DEVICE_ID_INTEL_PATSBURG_SMBUS	0x1d22
-#define PCI_DEVICE_ID_INTEL_PATSBURG_LPC	0x1d40
+#define PCI_DEVICE_ID_INTEL_PATSBURG_LPC_0	0x1d40
+#define PCI_DEVICE_ID_INTEL_PATSBURG_LPC_1	0x1d41
 #define PCI_DEVICE_ID_INTEL_82801AA_0	0x2410
 #define PCI_DEVICE_ID_INTEL_82801AA_1	0x2411
 #define PCI_DEVICE_ID_INTEL_82801AA_3	0x2413
-- 
1.7.0.4



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

* [PATCH 3/3] ahci: AHCI mode SATA patch for Intel Patsburg SATA RAID controller
  2011-05-27 20:45 [PATCH 0/3][KERNEL] base patches needed for romley tom.zanussi
  2011-05-27 20:46 ` [PATCH 1/3][KERNEL] Remove extra struct page member from the buffer info structure tom.zanussi
  2011-05-27 20:46 ` [PATCH 2/3][KERNEL] x86/PCI: irq and pci_ids patch for Intel Patsburg tom.zanussi
@ 2011-05-27 20:46 ` tom.zanussi
  2011-05-27 21:08   ` Bruce Ashfield
  2011-05-27 20:58 ` [PATCH 0/3][KERNEL] base patches needed for romley Bruce Ashfield
  2011-05-28  3:07 ` Darren Hart
  4 siblings, 1 reply; 13+ messages in thread
From: tom.zanussi @ 2011-05-27 20:46 UTC (permalink / raw)
  To: bruce.ashfield, rahul.saxena, kishore.k.bodke, yocto

From: Seth Heasley

commit 64a3903d0885879ba8706a8bcf71c5e3e7664db2 upstream

This patch adds an updated SATA RAID DeviceID for the Intel Patsburg PCH.

Signed-off-by: Seth Heasley
Signed-off-by: Jeff Garzik
Integrated-by: Tom Zanussi
---
 drivers/ata/ahci.c |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/drivers/ata/ahci.c b/drivers/ata/ahci.c
index 3288263..dfc0a26 100644
--- a/drivers/ata/ahci.c
+++ b/drivers/ata/ahci.c
@@ -260,6 +260,7 @@ static const struct pci_device_id ahci_pci_tbl[] = {
 	{ PCI_VDEVICE(INTEL, 0x1d02), board_ahci }, /* PBG AHCI */
 	{ PCI_VDEVICE(INTEL, 0x1d04), board_ahci }, /* PBG RAID */
 	{ PCI_VDEVICE(INTEL, 0x1d06), board_ahci }, /* PBG RAID */
+	{ PCI_VDEVICE(INTEL, 0x2826), board_ahci }, /* PBG RAID */
 
 	/* JMicron 360/1/3/5/6, match class to avoid IDE function */
 	{ PCI_VENDOR_ID_JMICRON, PCI_ANY_ID, PCI_ANY_ID, PCI_ANY_ID,
-- 
1.7.0.4



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

* Re: [PATCH 0/3][KERNEL] base patches needed for romley
  2011-05-27 20:45 [PATCH 0/3][KERNEL] base patches needed for romley tom.zanussi
                   ` (2 preceding siblings ...)
  2011-05-27 20:46 ` [PATCH 3/3] ahci: AHCI mode SATA patch for Intel Patsburg SATA RAID controller tom.zanussi
@ 2011-05-27 20:58 ` Bruce Ashfield
  2011-05-27 21:04   ` Tom Zanussi
  2011-05-28  3:07 ` Darren Hart
  4 siblings, 1 reply; 13+ messages in thread
From: Bruce Ashfield @ 2011-05-27 20:58 UTC (permalink / raw)
  To: tom.zanussi; +Cc: yocto

On 11-05-27 04:45 PM, tom.zanussi@intel.com wrote:
> From: Tom Zanussi<tom.zanussi@intel.com>
>
> These upstreamed post-2.6.37 patches are needed by the romley BSP
> for 2.6.37.
>
> Note that I've removed the e-mail addresses from these posted patches,
> but the git branch retains them.
>
> Please pull into linux-yocto-2.6.37.

Good timing, I was just in re-working 2.6.37 and
2.6.39, so I'll stack these on top.

changes look good to me, I've fetched this.

It'll go out over the weekend to the kernel repo, and SRCREV
updates to follow.

Bruce

>
> Thanks,
>
> Tom
>
> Pull URL: git://git.yoctoproject.org/linux-yocto-2.6.37-contrib
>    Branch: tzanussi/romley-new-options-and-refactor-base
>    Browse: http://git.yoctoproject.org/cgit.cgi/linux-yocto-2.6.37-contrib/log/?h=tzanussi/romley-new-options-and-refactor-base
>
> Greg Rose (1):
>    Remove extra struct page member from the buffer info structure
>
> Seth Heasley (2):
>    x86/PCI: irq and pci_ids patch for Intel Patsburg
>    ahci: AHCI mode SATA patch for Intel Patsburg SATA RAID controller
>
>   arch/x86/pci/irq.c        |    3 ++-
>   drivers/ata/ahci.c        |    1 +
>   drivers/net/igbvf/igbvf.h |    1 -
>   include/linux/pci_ids.h   |    3 ++-
>   4 files changed, 5 insertions(+), 3 deletions(-)
>



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

* Re: [PATCH 0/3][KERNEL] base patches needed for romley
  2011-05-27 20:58 ` [PATCH 0/3][KERNEL] base patches needed for romley Bruce Ashfield
@ 2011-05-27 21:04   ` Tom Zanussi
  0 siblings, 0 replies; 13+ messages in thread
From: Tom Zanussi @ 2011-05-27 21:04 UTC (permalink / raw)
  To: Bruce Ashfield; +Cc: yocto

On Fri, 2011-05-27 at 13:58 -0700, Bruce Ashfield wrote:
> On 11-05-27 04:45 PM, tom.zanussi@intel.com wrote:
> > From: Tom Zanussi<tom.zanussi@intel.com>
> >
> > These upstreamed post-2.6.37 patches are needed by the romley BSP
> > for 2.6.37.
> >
> > Note that I've removed the e-mail addresses from these posted patches,
> > but the git branch retains them.
> >
> > Please pull into linux-yocto-2.6.37.
> 
> Good timing, I was just in re-working 2.6.37 and
> 2.6.39, so I'll stack these on top.
> 
> changes look good to me, I've fetched this.
> 
> It'll go out over the weekend to the kernel repo, and SRCREV
> updates to follow.
> 

Thanks, Bruce!

Tom

> Bruce
> 
> >
> > Thanks,
> >
> > Tom
> >
> > Pull URL: git://git.yoctoproject.org/linux-yocto-2.6.37-contrib
> >    Branch: tzanussi/romley-new-options-and-refactor-base
> >    Browse: http://git.yoctoproject.org/cgit.cgi/linux-yocto-2.6.37-contrib/log/?h=tzanussi/romley-new-options-and-refactor-base
> >
> > Greg Rose (1):
> >    Remove extra struct page member from the buffer info structure
> >
> > Seth Heasley (2):
> >    x86/PCI: irq and pci_ids patch for Intel Patsburg
> >    ahci: AHCI mode SATA patch for Intel Patsburg SATA RAID controller
> >
> >   arch/x86/pci/irq.c        |    3 ++-
> >   drivers/ata/ahci.c        |    1 +
> >   drivers/net/igbvf/igbvf.h |    1 -
> >   include/linux/pci_ids.h   |    3 ++-
> >   4 files changed, 5 insertions(+), 3 deletions(-)
> >
> 




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

* Re: [PATCH 3/3] ahci: AHCI mode SATA patch for Intel Patsburg SATA RAID controller
  2011-05-27 20:46 ` [PATCH 3/3] ahci: AHCI mode SATA patch for Intel Patsburg SATA RAID controller tom.zanussi
@ 2011-05-27 21:08   ` Bruce Ashfield
  2011-05-27 21:19     ` Tom Zanussi
  0 siblings, 1 reply; 13+ messages in thread
From: Bruce Ashfield @ 2011-05-27 21:08 UTC (permalink / raw)
  To: tom.zanussi; +Cc: yocto

On 11-05-27 04:46 PM, tom.zanussi@intel.com wrote:
> From: Seth Heasley
>
> commit 64a3903d0885879ba8706a8bcf71c5e3e7664db2 upstream
>
> This patch adds an updated SATA RAID DeviceID for the Intel Patsburg PCH.

Looks like we already had this one in the 2.6.37 tree
via gregkh and -stable

 > git tag --contains 5618c45b
v2.6.37.5
v2.6.37.6

And hence the base yocto/standard/common-pc-64/romley
bsp branch.

So I won't do anything with this in particular. It is
interesting though how it applied in your tree. Do you
have all the -stable updates ?

I checked and it doesn't look like I've been hoarding
them, but you never know.

Bruce

>
> Signed-off-by: Seth Heasley
> Signed-off-by: Jeff Garzik
> Integrated-by: Tom Zanussi
> ---
>   drivers/ata/ahci.c |    1 +
>   1 files changed, 1 insertions(+), 0 deletions(-)
>
> diff --git a/drivers/ata/ahci.c b/drivers/ata/ahci.c
> index 3288263..dfc0a26 100644
> --- a/drivers/ata/ahci.c
> +++ b/drivers/ata/ahci.c
> @@ -260,6 +260,7 @@ static const struct pci_device_id ahci_pci_tbl[] = {
>   	{ PCI_VDEVICE(INTEL, 0x1d02), board_ahci }, /* PBG AHCI */
>   	{ PCI_VDEVICE(INTEL, 0x1d04), board_ahci }, /* PBG RAID */
>   	{ PCI_VDEVICE(INTEL, 0x1d06), board_ahci }, /* PBG RAID */
> +	{ PCI_VDEVICE(INTEL, 0x2826), board_ahci }, /* PBG RAID */
>
>   	/* JMicron 360/1/3/5/6, match class to avoid IDE function */
>   	{ PCI_VENDOR_ID_JMICRON, PCI_ANY_ID, PCI_ANY_ID, PCI_ANY_ID,



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

* Re: [PATCH 3/3] ahci: AHCI mode SATA patch for Intel Patsburg SATA RAID controller
  2011-05-27 21:08   ` Bruce Ashfield
@ 2011-05-27 21:19     ` Tom Zanussi
  2011-05-28  0:16       ` Bruce Ashfield
  0 siblings, 1 reply; 13+ messages in thread
From: Tom Zanussi @ 2011-05-27 21:19 UTC (permalink / raw)
  To: Bruce Ashfield; +Cc: yocto

On Fri, 2011-05-27 at 14:08 -0700, Bruce Ashfield wrote:
> On 11-05-27 04:46 PM, tom.zanussi@intel.com wrote:
> > From: Seth Heasley
> >
> > commit 64a3903d0885879ba8706a8bcf71c5e3e7664db2 upstream
> >
> > This patch adds an updated SATA RAID DeviceID for the Intel Patsburg PCH.
> 
> Looks like we already had this one in the 2.6.37 tree
> via gregkh and -stable
> 
>  > git tag --contains 5618c45b
> v2.6.37.5
> v2.6.37.6
> 
> And hence the base yocto/standard/common-pc-64/romley
> bsp branch.
> 
> So I won't do anything with this in particular. It is
> interesting though how it applied in your tree. Do you
> have all the -stable updates ?
> 
> I checked and it doesn't look like I've been hoarding
> them, but you never know.
> 

Hmm, yeah, it did apply (checked the build dir for the other changes),
but not sure why I didn't get rejects.  My kernel is a little over a
week old, but it does have the .5 stable:

$ git tag --contains 5618c45b
v2.6.37.5

Tom

> Bruce
> 
> >
> > Signed-off-by: Seth Heasley
> > Signed-off-by: Jeff Garzik
> > Integrated-by: Tom Zanussi
> > ---
> >   drivers/ata/ahci.c |    1 +
> >   1 files changed, 1 insertions(+), 0 deletions(-)
> >
> > diff --git a/drivers/ata/ahci.c b/drivers/ata/ahci.c
> > index 3288263..dfc0a26 100644
> > --- a/drivers/ata/ahci.c
> > +++ b/drivers/ata/ahci.c
> > @@ -260,6 +260,7 @@ static const struct pci_device_id ahci_pci_tbl[] = {
> >   	{ PCI_VDEVICE(INTEL, 0x1d02), board_ahci }, /* PBG AHCI */
> >   	{ PCI_VDEVICE(INTEL, 0x1d04), board_ahci }, /* PBG RAID */
> >   	{ PCI_VDEVICE(INTEL, 0x1d06), board_ahci }, /* PBG RAID */
> > +	{ PCI_VDEVICE(INTEL, 0x2826), board_ahci }, /* PBG RAID */
> >
> >   	/* JMicron 360/1/3/5/6, match class to avoid IDE function */
> >   	{ PCI_VENDOR_ID_JMICRON, PCI_ANY_ID, PCI_ANY_ID, PCI_ANY_ID,
> 




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

* Re: [PATCH 3/3] ahci: AHCI mode SATA patch for Intel Patsburg SATA RAID controller
  2011-05-27 21:19     ` Tom Zanussi
@ 2011-05-28  0:16       ` Bruce Ashfield
  2011-05-28  0:26         ` Tom Zanussi
  0 siblings, 1 reply; 13+ messages in thread
From: Bruce Ashfield @ 2011-05-28  0:16 UTC (permalink / raw)
  To: Tom Zanussi; +Cc: yocto

On 11-05-27 5:19 PM, Tom Zanussi wrote:
> On Fri, 2011-05-27 at 14:08 -0700, Bruce Ashfield wrote:
>> On 11-05-27 04:46 PM, tom.zanussi@intel.com wrote:
>>> From: Seth Heasley
>>>
>>> commit 64a3903d0885879ba8706a8bcf71c5e3e7664db2 upstream
>>>
>>> This patch adds an updated SATA RAID DeviceID for the Intel Patsburg PCH.
>>
>> Looks like we already had this one in the 2.6.37 tree
>> via gregkh and -stable
>>
>>   >  git tag --contains 5618c45b
>> v2.6.37.5
>> v2.6.37.6
>>
>> And hence the base yocto/standard/common-pc-64/romley
>> bsp branch.
>>
>> So I won't do anything with this in particular. It is
>> interesting though how it applied in your tree. Do you
>> have all the -stable updates ?
>>
>> I checked and it doesn't look like I've been hoarding
>> them, but you never know.
>>
>
> Hmm, yeah, it did apply (checked the build dir for the other changes),
> but not sure why I didn't get rejects.  My kernel is a little over a
> week old, but it does have the .5 stable:

It actually has .6 and certain people (*cough*) didn't push
the tags. I'll fix that tonight.

git has a way of managing to apply changes and do the right
thing. I've double checked, and I do see the change in the
branches waiting for us, so we'll go with that until proven
otherwise.

Cheers,

Bruce

>
> $ git tag --contains 5618c45b
> v2.6.37.5
>
> Tom
>
>> Bruce
>>
>>>
>>> Signed-off-by: Seth Heasley
>>> Signed-off-by: Jeff Garzik
>>> Integrated-by: Tom Zanussi
>>> ---
>>>    drivers/ata/ahci.c |    1 +
>>>    1 files changed, 1 insertions(+), 0 deletions(-)
>>>
>>> diff --git a/drivers/ata/ahci.c b/drivers/ata/ahci.c
>>> index 3288263..dfc0a26 100644
>>> --- a/drivers/ata/ahci.c
>>> +++ b/drivers/ata/ahci.c
>>> @@ -260,6 +260,7 @@ static const struct pci_device_id ahci_pci_tbl[] = {
>>>    	{ PCI_VDEVICE(INTEL, 0x1d02), board_ahci }, /* PBG AHCI */
>>>    	{ PCI_VDEVICE(INTEL, 0x1d04), board_ahci }, /* PBG RAID */
>>>    	{ PCI_VDEVICE(INTEL, 0x1d06), board_ahci }, /* PBG RAID */
>>> +	{ PCI_VDEVICE(INTEL, 0x2826), board_ahci }, /* PBG RAID */
>>>
>>>    	/* JMicron 360/1/3/5/6, match class to avoid IDE function */
>>>    	{ PCI_VENDOR_ID_JMICRON, PCI_ANY_ID, PCI_ANY_ID, PCI_ANY_ID,
>>
>
>



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

* Re: [PATCH 3/3] ahci: AHCI mode SATA patch for Intel Patsburg SATA RAID controller
  2011-05-28  0:16       ` Bruce Ashfield
@ 2011-05-28  0:26         ` Tom Zanussi
  0 siblings, 0 replies; 13+ messages in thread
From: Tom Zanussi @ 2011-05-28  0:26 UTC (permalink / raw)
  To: Bruce Ashfield; +Cc: yocto

On Fri, 2011-05-27 at 17:16 -0700, Bruce Ashfield wrote:
> On 11-05-27 5:19 PM, Tom Zanussi wrote:
> > On Fri, 2011-05-27 at 14:08 -0700, Bruce Ashfield wrote:
> >> On 11-05-27 04:46 PM, tom.zanussi@intel.com wrote:
> >>> From: Seth Heasley
> >>>
> >>> commit 64a3903d0885879ba8706a8bcf71c5e3e7664db2 upstream
> >>>
> >>> This patch adds an updated SATA RAID DeviceID for the Intel Patsburg PCH.
> >>
> >> Looks like we already had this one in the 2.6.37 tree
> >> via gregkh and -stable
> >>
> >>   >  git tag --contains 5618c45b
> >> v2.6.37.5
> >> v2.6.37.6
> >>
> >> And hence the base yocto/standard/common-pc-64/romley
> >> bsp branch.
> >>
> >> So I won't do anything with this in particular. It is
> >> interesting though how it applied in your tree. Do you
> >> have all the -stable updates ?
> >>
> >> I checked and it doesn't look like I've been hoarding
> >> them, but you never know.
> >>
> >
> > Hmm, yeah, it did apply (checked the build dir for the other changes),
> > but not sure why I didn't get rejects.  My kernel is a little over a
> > week old, but it does have the .5 stable:
> 
> It actually has .6 and certain people (*cough*) didn't push
> the tags. I'll fix that tonight.
> 
> git has a way of managing to apply changes and do the right
> thing. I've double checked, and I do see the change in the
> branches waiting for us, so we'll go with that until proven
> otherwise.
> 

Yeah, either way it's the same single line change, so whatever's
easiest.

Tom

> Cheers,
> 
> Bruce
> 
> >
> > $ git tag --contains 5618c45b
> > v2.6.37.5
> >
> > Tom
> >
> >> Bruce
> >>
> >>>
> >>> Signed-off-by: Seth Heasley
> >>> Signed-off-by: Jeff Garzik
> >>> Integrated-by: Tom Zanussi
> >>> ---
> >>>    drivers/ata/ahci.c |    1 +
> >>>    1 files changed, 1 insertions(+), 0 deletions(-)
> >>>
> >>> diff --git a/drivers/ata/ahci.c b/drivers/ata/ahci.c
> >>> index 3288263..dfc0a26 100644
> >>> --- a/drivers/ata/ahci.c
> >>> +++ b/drivers/ata/ahci.c
> >>> @@ -260,6 +260,7 @@ static const struct pci_device_id ahci_pci_tbl[] = {
> >>>    	{ PCI_VDEVICE(INTEL, 0x1d02), board_ahci }, /* PBG AHCI */
> >>>    	{ PCI_VDEVICE(INTEL, 0x1d04), board_ahci }, /* PBG RAID */
> >>>    	{ PCI_VDEVICE(INTEL, 0x1d06), board_ahci }, /* PBG RAID */
> >>> +	{ PCI_VDEVICE(INTEL, 0x2826), board_ahci }, /* PBG RAID */
> >>>
> >>>    	/* JMicron 360/1/3/5/6, match class to avoid IDE function */
> >>>    	{ PCI_VENDOR_ID_JMICRON, PCI_ANY_ID, PCI_ANY_ID, PCI_ANY_ID,
> >>
> >
> >
> 




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

* Re: [PATCH 0/3][KERNEL] base patches needed for romley
  2011-05-27 20:45 [PATCH 0/3][KERNEL] base patches needed for romley tom.zanussi
                   ` (3 preceding siblings ...)
  2011-05-27 20:58 ` [PATCH 0/3][KERNEL] base patches needed for romley Bruce Ashfield
@ 2011-05-28  3:07 ` Darren Hart
  2011-05-28  3:20   ` Tom Zanussi
  4 siblings, 1 reply; 13+ messages in thread
From: Darren Hart @ 2011-05-28  3:07 UTC (permalink / raw)
  To: tom.zanussi; +Cc: yocto

On 05/27/2011 01:45 PM, tom.zanussi@intel.com wrote:
> From: Tom Zanussi <tom.zanussi@intel.com>
> 
> These upstreamed post-2.6.37 patches are needed by the romley BSP
> for 2.6.37.
> 
> Note that I've removed the e-mail addresses from these posted patches,
> but the git branch retains them.

I understand the reason, but this should no longer be necessary. The new
send-pull-request script only matches on "^Signed-off-by" and
"^[Cc][Cc]:", and you can do a dry run by answering "no" when prompted
and you can see where it would try and send the patches. If you notice
that a commit adding patches to recipe pulls in emails included in the
patches, PLEASE let me know. This should no longer be the case.

--
Darren

> 
> Please pull into linux-yocto-2.6.37.
> 
> Thanks,
> 
> Tom
> 
> Pull URL: git://git.yoctoproject.org/linux-yocto-2.6.37-contrib
>   Branch: tzanussi/romley-new-options-and-refactor-base
>   Browse: http://git.yoctoproject.org/cgit.cgi/linux-yocto-2.6.37-contrib/log/?h=tzanussi/romley-new-options-and-refactor-base
> 
> Greg Rose (1):
>   Remove extra struct page member from the buffer info structure
> 
> Seth Heasley (2):
>   x86/PCI: irq and pci_ids patch for Intel Patsburg
>   ahci: AHCI mode SATA patch for Intel Patsburg SATA RAID controller
> 
>  arch/x86/pci/irq.c        |    3 ++-
>  drivers/ata/ahci.c        |    1 +
>  drivers/net/igbvf/igbvf.h |    1 -
>  include/linux/pci_ids.h   |    3 ++-
>  4 files changed, 5 insertions(+), 3 deletions(-)
> 
> _______________________________________________
> yocto mailing list
> yocto@yoctoproject.org
> https://lists.yoctoproject.org/listinfo/yocto


-- 
Darren Hart
Intel Open Source Technology Center
Yocto Project - Linux Kernel


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

* Re: [PATCH 0/3][KERNEL] base patches needed for romley
  2011-05-28  3:07 ` Darren Hart
@ 2011-05-28  3:20   ` Tom Zanussi
  2011-05-28  5:14     ` Darren Hart
  0 siblings, 1 reply; 13+ messages in thread
From: Tom Zanussi @ 2011-05-28  3:20 UTC (permalink / raw)
  To: Hart, Darren; +Cc: yocto

On Fri, 2011-05-27 at 20:07 -0700, Hart, Darren wrote:
> On 05/27/2011 01:45 PM, tom.zanussi@intel.com wrote:
> > From: Tom Zanussi <tom.zanussi@intel.com>
> > 
> > These upstreamed post-2.6.37 patches are needed by the romley BSP
> > for 2.6.37.
> > 
> > Note that I've removed the e-mail addresses from these posted patches,
> > but the git branch retains them.
> 
> I understand the reason, but this should no longer be necessary. The new
> send-pull-request script only matches on "^Signed-off-by" and
> "^[Cc][Cc]:", and you can do a dry run by answering "no" when prompted
> and you can see where it would try and send the patches. If you notice
> that a commit adding patches to recipe pulls in emails included in the
> patches, PLEASE let me know. This should no longer be the case.
> 

I didn't try that, just decided I didn't want to risk it, but did try it
now and get:

Send this email? ([y]es|[n]o|[q]uit|[a]ll): n
(mbox) Adding cc: Seth Heasley from line 'From: Seth Heasley'
(body) Adding cc: Seth Heasley from line 'Signed-off-by: Seth Heasley'
(body) Adding cc: Jeff Garzik from line 'Signed-off-by: Jeff Garzik'
Use of uninitialized value $cc in string eq at /usr/lib/git-core/git-send-email line 842.
Use of uninitialized value $cc in string eq at /usr/lib/git-core/git-send-email line 842.
Use of uninitialized value $cc in string eq at /usr/lib/git-core/git-send-email line 842.
Use of uninitialized value $cc in string eq at /usr/lib/git-core/git-send-email line 842.
Use of uninitialized value $cc in string eq at /usr/lib/git-core/git-send-email line 842.
Use of uninitialized value $cc in string eq at /usr/lib/git-core/git-send-email line 842.
Use of uninitialized value $cc in string eq at /usr/lib/git-core/git-send-email line 842.
Use of uninitialized value $cc in string eq at /usr/lib/git-core/git-send-email line 842.
Use of uninitialized value $cc in string eq at /usr/lib/git-core/git-send-email line 842.
Use of uninitialized value $cc in string eq at /usr/lib/git-core/git-send-email line 842.
Use of uninitialized value $cc in string eq at /usr/lib/git-core/git-send-email line 842.
Use of uninitialized value $cc in string eq at /usr/lib/git-core/git-send-email line 842.
W: unable to extract a valid address from: Seth Heasley
W: unable to extract a valid address from: Seth Heasley
W: unable to extract a valid address from: Jeff Garzik
W: unable to extract a valid address from: Seth Heasley
W: unable to extract a valid address from: Seth Heasley
W: unable to extract a valid address from: Jeff Garzik

It looks like it is trying to cc the e-mails in the patch, or am I
reading that wrong?

The poky/master commit I'm using is:

1169f1b066d0028bd2ef7915440450bd42ef165e

Tom

> --
> Darren
> 
> > 
> > Please pull into linux-yocto-2.6.37.
> > 
> > Thanks,
> > 
> > Tom
> > 
> > Pull URL: git://git.yoctoproject.org/linux-yocto-2.6.37-contrib
> >   Branch: tzanussi/romley-new-options-and-refactor-base
> >   Browse: http://git.yoctoproject.org/cgit.cgi/linux-yocto-2.6.37-contrib/log/?h=tzanussi/romley-new-options-and-refactor-base
> > 
> > Greg Rose (1):
> >   Remove extra struct page member from the buffer info structure
> > 
> > Seth Heasley (2):
> >   x86/PCI: irq and pci_ids patch for Intel Patsburg
> >   ahci: AHCI mode SATA patch for Intel Patsburg SATA RAID controller
> > 
> >  arch/x86/pci/irq.c        |    3 ++-
> >  drivers/ata/ahci.c        |    1 +
> >  drivers/net/igbvf/igbvf.h |    1 -
> >  include/linux/pci_ids.h   |    3 ++-
> >  4 files changed, 5 insertions(+), 3 deletions(-)
> > 
> > _______________________________________________
> > yocto mailing list
> > yocto@yoctoproject.org
> > https://lists.yoctoproject.org/listinfo/yocto
> 
> 




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

* Re: [PATCH 0/3][KERNEL] base patches needed for romley
  2011-05-28  3:20   ` Tom Zanussi
@ 2011-05-28  5:14     ` Darren Hart
  0 siblings, 0 replies; 13+ messages in thread
From: Darren Hart @ 2011-05-28  5:14 UTC (permalink / raw)
  To: Zanussi, Tom; +Cc: yocto

On 05/27/2011 08:20 PM, Zanussi, Tom wrote:
> On Fri, 2011-05-27 at 20:07 -0700, Hart, Darren wrote:
>> On 05/27/2011 01:45 PM, tom.zanussi@intel.com wrote:
>>> From: Tom Zanussi <tom.zanussi@intel.com>
>>>
>>> These upstreamed post-2.6.37 patches are needed by the romley BSP
>>> for 2.6.37.
>>>
>>> Note that I've removed the e-mail addresses from these posted patches,
>>> but the git branch retains them.
>>
>> I understand the reason, but this should no longer be necessary. The new
>> send-pull-request script only matches on "^Signed-off-by" and
>> "^[Cc][Cc]:", and you can do a dry run by answering "no" when prompted
>> and you can see where it would try and send the patches. If you notice
>> that a commit adding patches to recipe pulls in emails included in the
>> patches, PLEASE let me know. This should no longer be the case.
>>
> 
> I didn't try that, just decided I didn't want to risk it, but did try it
> now and get:
> 
> Send this email? ([y]es|[n]o|[q]uit|[a]ll): n
> (mbox) Adding cc: Seth Heasley from line 'From: Seth Heasley'
> (body) Adding cc: Seth Heasley from line 'Signed-off-by: Seth Heasley'
> (body) Adding cc: Jeff Garzik from line 'Signed-off-by: Jeff Garzik'


Ah... that's really unfortunate. I fixed our script from harvesting
those, but git send-email still picks them out :-(

Thanks for testing and confirming the behavior.

--
Darren

> Use of uninitialized value $cc in string eq at /usr/lib/git-core/git-send-email line 842.
> Use of uninitialized value $cc in string eq at /usr/lib/git-core/git-send-email line 842.
> Use of uninitialized value $cc in string eq at /usr/lib/git-core/git-send-email line 842.
> Use of uninitialized value $cc in string eq at /usr/lib/git-core/git-send-email line 842.
> Use of uninitialized value $cc in string eq at /usr/lib/git-core/git-send-email line 842.
> Use of uninitialized value $cc in string eq at /usr/lib/git-core/git-send-email line 842.
> Use of uninitialized value $cc in string eq at /usr/lib/git-core/git-send-email line 842.
> Use of uninitialized value $cc in string eq at /usr/lib/git-core/git-send-email line 842.
> Use of uninitialized value $cc in string eq at /usr/lib/git-core/git-send-email line 842.
> Use of uninitialized value $cc in string eq at /usr/lib/git-core/git-send-email line 842.
> Use of uninitialized value $cc in string eq at /usr/lib/git-core/git-send-email line 842.
> Use of uninitialized value $cc in string eq at /usr/lib/git-core/git-send-email line 842.
> W: unable to extract a valid address from: Seth Heasley
> W: unable to extract a valid address from: Seth Heasley
> W: unable to extract a valid address from: Jeff Garzik
> W: unable to extract a valid address from: Seth Heasley
> W: unable to extract a valid address from: Seth Heasley
> W: unable to extract a valid address from: Jeff Garzik
> 
> It looks like it is trying to cc the e-mails in the patch, or am I
> reading that wrong?
> 
> The poky/master commit I'm using is:
> 
> 1169f1b066d0028bd2ef7915440450bd42ef165e
> 
> Tom
> 
>> --
>> Darren
>>
>>>
>>> Please pull into linux-yocto-2.6.37.
>>>
>>> Thanks,
>>>
>>> Tom
>>>
>>> Pull URL: git://git.yoctoproject.org/linux-yocto-2.6.37-contrib
>>>   Branch: tzanussi/romley-new-options-and-refactor-base
>>>   Browse: http://git.yoctoproject.org/cgit.cgi/linux-yocto-2.6.37-contrib/log/?h=tzanussi/romley-new-options-and-refactor-base
>>>
>>> Greg Rose (1):
>>>   Remove extra struct page member from the buffer info structure
>>>
>>> Seth Heasley (2):
>>>   x86/PCI: irq and pci_ids patch for Intel Patsburg
>>>   ahci: AHCI mode SATA patch for Intel Patsburg SATA RAID controller
>>>
>>>  arch/x86/pci/irq.c        |    3 ++-
>>>  drivers/ata/ahci.c        |    1 +
>>>  drivers/net/igbvf/igbvf.h |    1 -
>>>  include/linux/pci_ids.h   |    3 ++-
>>>  4 files changed, 5 insertions(+), 3 deletions(-)
>>>
>>> _______________________________________________
>>> yocto mailing list
>>> yocto@yoctoproject.org
>>> https://lists.yoctoproject.org/listinfo/yocto
>>
>>
> 
> 


-- 
Darren Hart
Intel Open Source Technology Center
Yocto Project - Linux Kernel


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

end of thread, other threads:[~2011-05-28  5:14 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-05-27 20:45 [PATCH 0/3][KERNEL] base patches needed for romley tom.zanussi
2011-05-27 20:46 ` [PATCH 1/3][KERNEL] Remove extra struct page member from the buffer info structure tom.zanussi
2011-05-27 20:46 ` [PATCH 2/3][KERNEL] x86/PCI: irq and pci_ids patch for Intel Patsburg tom.zanussi
2011-05-27 20:46 ` [PATCH 3/3] ahci: AHCI mode SATA patch for Intel Patsburg SATA RAID controller tom.zanussi
2011-05-27 21:08   ` Bruce Ashfield
2011-05-27 21:19     ` Tom Zanussi
2011-05-28  0:16       ` Bruce Ashfield
2011-05-28  0:26         ` Tom Zanussi
2011-05-27 20:58 ` [PATCH 0/3][KERNEL] base patches needed for romley Bruce Ashfield
2011-05-27 21:04   ` Tom Zanussi
2011-05-28  3:07 ` Darren Hart
2011-05-28  3:20   ` Tom Zanussi
2011-05-28  5:14     ` Darren Hart

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.