* [patch for 2.6.29? 1/1] ia64: fix PCI DMA flag propagation on SN (Altix) with PICs
@ 2009-03-04 20:09 akpm
2009-03-12 17:15 ` Jesse Barnes
2009-03-12 17:41 ` [patch for 2.6.29? 1/1] ia64: fix PCI DMA flag propagation on Luck, Tony
0 siblings, 2 replies; 3+ messages in thread
From: akpm @ 2009-03-04 20:09 UTC (permalink / raw)
To: linux-ia64
From: Jeremy Higdon <jeremy@sgi.com>
We recently discovered a problem with passing of DMA attributes on SN
systems with the older PIC chips.
[akpm@linux-foundation.org: coding-style fixes]
Signed-off-by: Jeremy Higdon <jeremy@sgi.com>
Cc: <habeck@sgi.com>
Cc: "Luck, Tony" <tony.luck@intel.com>
Cc: Jesse Barnes <jbarnes@virtuousgeek.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
---
arch/ia64/sn/pci/pcibr/pcibr_dma.c | 7 +++----
1 file changed, 3 insertions(+), 4 deletions(-)
diff -puN arch/ia64/sn/pci/pcibr/pcibr_dma.c~ia64-fix-pci-dma-flag-propagation-on-sn-altix-with-pics arch/ia64/sn/pci/pcibr/pcibr_dma.c
--- a/arch/ia64/sn/pci/pcibr/pcibr_dma.c~ia64-fix-pci-dma-flag-propagation-on-sn-altix-with-pics
+++ a/arch/ia64/sn/pci/pcibr/pcibr_dma.c
@@ -135,11 +135,10 @@ pcibr_dmatrans_direct64(struct pcidev_in
if (SN_DMA_ADDRTYPE(dma_flags) = SN_DMA_ADDR_PHYS)
pci_addr = IS_PIC_SOFT(pcibus_info) ?
PHYS_TO_DMA(paddr) :
- PHYS_TO_TIODMA(paddr) | dma_attributes;
+ PHYS_TO_TIODMA(paddr);
else
- pci_addr = IS_PIC_SOFT(pcibus_info) ?
- paddr :
- paddr | dma_attributes;
+ pci_addr = paddr;
+ pci_addr |= dma_attributes;
/* Handle Bus mode */
if (IS_PCIX(pcibus_info))
_
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [patch for 2.6.29? 1/1] ia64: fix PCI DMA flag propagation on SN (Altix) with PICs
2009-03-04 20:09 [patch for 2.6.29? 1/1] ia64: fix PCI DMA flag propagation on SN (Altix) with PICs akpm
@ 2009-03-12 17:15 ` Jesse Barnes
2009-03-12 17:41 ` [patch for 2.6.29? 1/1] ia64: fix PCI DMA flag propagation on Luck, Tony
1 sibling, 0 replies; 3+ messages in thread
From: Jesse Barnes @ 2009-03-12 17:15 UTC (permalink / raw)
To: linux-ia64
On Wednesday, March 4, 2009 12:09:46 pm akpm@linux-foundation.org wrote:
> From: Jeremy Higdon <jeremy@sgi.com>
>
> We recently discovered a problem with passing of DMA attributes on SN
> systems with the older PIC chips.
>
> [akpm@linux-foundation.org: coding-style fixes]
> Signed-off-by: Jeremy Higdon <jeremy@sgi.com>
> Cc: <habeck@sgi.com>
> Cc: "Luck, Tony" <tony.luck@intel.com>
> Cc: Jesse Barnes <jbarnes@virtuousgeek.org>
> Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
> ---
>
> arch/ia64/sn/pci/pcibr/pcibr_dma.c | 7 +++----
> 1 file changed, 3 insertions(+), 4 deletions(-)
>
> diff -puN
> arch/ia64/sn/pci/pcibr/pcibr_dma.c~ia64-fix-pci-dma-flag-propagation-on-sn-
>altix-with-pics arch/ia64/sn/pci/pcibr/pcibr_dma.c ---
> a/arch/ia64/sn/pci/pcibr/pcibr_dma.c~ia64-fix-pci-dma-flag-propagation-on-s
>n-altix-with-pics +++ a/arch/ia64/sn/pci/pcibr/pcibr_dma.c
> @@ -135,11 +135,10 @@ pcibr_dmatrans_direct64(struct pcidev_in
> if (SN_DMA_ADDRTYPE(dma_flags) = SN_DMA_ADDR_PHYS)
> pci_addr = IS_PIC_SOFT(pcibus_info) ?
> PHYS_TO_DMA(paddr) :
> - PHYS_TO_TIODMA(paddr) | dma_attributes;
> + PHYS_TO_TIODMA(paddr);
> else
> - pci_addr = IS_PIC_SOFT(pcibus_info) ?
> - paddr :
> - paddr | dma_attributes;
> + pci_addr = paddr;
> + pci_addr |= dma_attributes;
>
> /* Handle Bus mode */
> if (IS_PCIX(pcibus_info))
> _
Tony, want to pick this up?
Acked-by: Jesse Barnes <jbarnes@virtuousgeek.org>
Thanks,
--
Jesse Barnes, Intel Open Source Technology Center
^ permalink raw reply [flat|nested] 3+ messages in thread
* RE: [patch for 2.6.29? 1/1] ia64: fix PCI DMA flag propagation on
2009-03-04 20:09 [patch for 2.6.29? 1/1] ia64: fix PCI DMA flag propagation on SN (Altix) with PICs akpm
2009-03-12 17:15 ` Jesse Barnes
@ 2009-03-12 17:41 ` Luck, Tony
1 sibling, 0 replies; 3+ messages in thread
From: Luck, Tony @ 2009-03-12 17:41 UTC (permalink / raw)
To: linux-ia64
> Tony, want to pick this up?
Already did: http://tinyurl.com/dzbhup
-Tony
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2009-03-12 17:41 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-03-04 20:09 [patch for 2.6.29? 1/1] ia64: fix PCI DMA flag propagation on SN (Altix) with PICs akpm
2009-03-12 17:15 ` Jesse Barnes
2009-03-12 17:41 ` [patch for 2.6.29? 1/1] ia64: fix PCI DMA flag propagation on Luck, Tony
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox