From: Dave Jones <davej@redhat.com>
To: David Miller <davem@davemloft.net>
Cc: netdev@vger.kernel.org, Francois Romieu <romieu@fr.zoreil.com>
Subject: Re: 8139cp dma-debug warning.
Date: Thu, 13 Aug 2009 09:45:49 -0400 [thread overview]
Message-ID: <20090813134549.GA2845@redhat.com> (raw)
In-Reply-To: <20090812.222046.60033759.davem@davemloft.net>
On Wed, Aug 12, 2009 at 10:20:46PM -0700, David Miller wrote:
> From: Dave Jones <davej@redhat.com>
> Date: Wed, 12 Aug 2009 13:13:33 -0400
>
> > There's another instance of the same further in the file.
> >
> > Does this look right?
>
> Dave, Francois posted the following fix to lkml (he forgot
> to CC: netdev and the people reporting this bug, oh well)
Ah, I missed it (disk crashed on friday, so I've been backlogged
since then). Thanks for the forward.
> Did you see it? It should fix the bug.
>
> 8139cp: balance dma_map_single vs dma_unmap_single pair
>
> The driver always:
> 1. allocate cp->rx_buf_sz + NET_IP_ALIGN
> 2. map cp->rx_buf_sz
>
> Signed-off-by: Francois Romieu <romieu@fr.zoreil.com>
> Signed-off-by: David S. Miller <davem@davemloft.net>
> ---
> drivers/net/8139cp.c | 5 ++---
> 1 files changed, 2 insertions(+), 3 deletions(-)
>
> diff --git a/drivers/net/8139cp.c b/drivers/net/8139cp.c
> index 50efde1..d0dbbf3 100644
> --- a/drivers/net/8139cp.c
> +++ b/drivers/net/8139cp.c
> @@ -515,7 +515,7 @@ rx_status_loop:
> dma_addr_t mapping;
> struct sk_buff *skb, *new_skb;
> struct cp_desc *desc;
> - unsigned buflen;
> + const unsigned buflen = cp->rx_buf_sz;
>
> skb = cp->rx_skb[rx_tail];
> BUG_ON(!skb);
> @@ -549,8 +549,7 @@ rx_status_loop:
> pr_debug("%s: rx slot %d status 0x%x len %d\n",
> dev->name, rx_tail, status, len);
>
> - buflen = cp->rx_buf_sz + NET_IP_ALIGN;
> - new_skb = netdev_alloc_skb(dev, buflen);
> + new_skb = netdev_alloc_skb(dev, buflen + NET_IP_ALIGN);
> if (!new_skb) {
> dev->stats.rx_dropped++;
> goto rx_next;
Below this, we're still doing an skb_reserve(NET_IP_ALIGN) on new_skb.
Although the mapping is now constantly sized, aren't we still wastefully
bumping the data/tail of the skb twice ?
Dave
next prev parent reply other threads:[~2009-08-13 13:45 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-08-06 21:57 8139cp dma-debug warning Dave Jones
2009-08-12 17:13 ` Dave Jones
2009-08-13 5:20 ` David Miller
2009-08-13 13:45 ` Dave Jones [this message]
2009-08-13 19:23 ` Francois Romieu
2009-08-13 19:28 ` Dave Jones
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20090813134549.GA2845@redhat.com \
--to=davej@redhat.com \
--cc=davem@davemloft.net \
--cc=netdev@vger.kernel.org \
--cc=romieu@fr.zoreil.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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.