* [PATCH] sis190: fix for x86_64 (bug 11509)
@ 2009-06-08 5:47 Riccardo Ghetta
2009-06-08 7:10 ` David Miller
0 siblings, 1 reply; 3+ messages in thread
From: Riccardo Ghetta @ 2009-06-08 5:47 UTC (permalink / raw)
To: romieu; +Cc: netdev
Corrected dma sync handling on small packets. Should fix
http://bugzilla.kernel.org/show_bug.cgi?id=11509
Note:
While this bug was reported only on x86_64, it could have affected
any architecture.
Signed-off-by: Riccardo Ghetta <birrachiara@tin.it>
---
drivers/net/sis190.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/net/sis190.c b/drivers/net/sis190.c
index f0d73ab..8a98524 100644
--- a/drivers/net/sis190.c
+++ b/drivers/net/sis190.c
@@ -540,8 +540,8 @@ static bool sis190_try_rx_copy(struct sis190_private *tp,
if (!skb)
goto out;
- pci_dma_sync_single_for_device(tp->pci_dev, addr, pkt_size,
- PCI_DMA_FROMDEVICE);
+ pci_dma_sync_single_for_cpu(tp->pci_dev, addr, tp->rx_buf_sz,
+ PCI_DMA_FROMDEVICE);
skb_reserve(skb, 2);
skb_copy_to_linear_data(skb, sk_buff[0]->data, pkt_size);
*sk_buff = skb;
--
1.6.2.4
^ permalink raw reply related [flat|nested] 3+ messages in thread
end of thread, other threads:[~2009-06-08 16:21 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-06-08 5:47 [PATCH] sis190: fix for x86_64 (bug 11509) Riccardo Ghetta
2009-06-08 7:10 ` David Miller
2009-06-08 16:21 ` r.ghetta
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).