[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <1358883411.2892.11.camel@bwh-desktop.uk.solarflarecom.com>
Date: Tue, 22 Jan 2013 19:36:51 +0000
From: Ben Hutchings <bhutchings@...arflare.com>
To: Eric Dumazet <eric.dumazet@...il.com>
CC: <christoph.paasch@...ouvain.be>,
Ian Campbell <Ian.Campbell@...rix.com>,
Sony Chacko <sony.chacko@...gic.com>,
Rajesh Borundia <rajesh.borundia@...gic.com>,
David Miller <davem@...emloft.net>, <netdev@...r.kernel.org>
Subject: Re: BUG in netxen_release_tx_buffers when TSO enabled on kernels >=
3.3 and <= 3.6
On Tue, 2013-01-22 at 05:56 -0800, Eric Dumazet wrote:
> On Tue, 2013-01-22 at 05:32 -0800, Eric Dumazet wrote:
>
> >
> > Something doesn't properly test MAX_SKB_FRAGS, we should track it and
> > fix.
>
> I guess netxen driver has a bug.
>
> Please try the following patch :
>
> diff --git a/drivers/net/ethernet/qlogic/netxen/netxen_nic_init.c b/drivers/net/ethernet/qlogic/netxen/netxen_nic_init.c
> index bc165f4..695667d 100644
> --- a/drivers/net/ethernet/qlogic/netxen/netxen_nic_init.c
> +++ b/drivers/net/ethernet/qlogic/netxen/netxen_nic_init.c
> @@ -144,7 +144,7 @@ void netxen_release_tx_buffers(struct netxen_adapter *adapter)
> buffrag->length, PCI_DMA_TODEVICE);
> buffrag->dma = 0ULL;
> }
> - for (j = 0; j < cmd_buf->frag_count; j++) {
> + for (j = 1; j < cmd_buf->frag_count; j++) {
> buffrag++;
> if (buffrag->dma) {
> pci_unmap_page(adapter->pdev, buffrag->dma,
>
There's another bug right here, which is that 0 is a valid DMA address
in some systems. The driver should be calling pci_dma_mapping_error()
to find out whether an address is valid or not. But it also wants to be
able to assign an invalid address to netxen_skb_frag::dma, and
unfortunately there is no way to do that in the current DMA API.
Ben.
--
Ben Hutchings, Staff Engineer, Solarflare
Not speaking for my employer; that's the marketing department's job.
They asked us to note that Solarflare product names are trademarked.
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists