From: Jeff Garzik <jeff@garzik.org>
To: Robert Fitzsimons <robfitz@273k.net>
Cc: Stephen Hemminger <shemminger@vyatta.com>,
Jeff Garzik <jgarzik@redhat.com>,
David Miller <davem@davemloft.net>,
Samuel Chessman <chessman@tux.org>,
linux-kernel@vger.kernel.org
Subject: Re: [PATCH] tlan: Fix two regressions introduced by 64bit conversion.
Date: Thu, 14 Aug 2008 04:29:14 -0400 [thread overview]
Message-ID: <48A3ECDA.4090208@garzik.org> (raw)
In-Reply-To: <20080809165402.GA3726@localhost>
Robert Fitzsimons wrote:
> Two regressions were introduced by the recent tlan: 64bit conversion
> commit (93e16847c9db0093065c98063cfc639cdfccf19a). The first in
> TLan_GetSKB caused a NULL pointer dereference. With the second causing
> the link to fail to come up.
>
> Signed-off-by: Robert Fitzsimons <robfitz@273k.net>
> ---
> drivers/net/tlan.c | 8 ++++----
> 1 files changed, 4 insertions(+), 4 deletions(-)
>
> diff --git a/drivers/net/tlan.c b/drivers/net/tlan.c
> index 85246ed..ec871f6 100644
> --- a/drivers/net/tlan.c
> +++ b/drivers/net/tlan.c
> @@ -360,8 +360,8 @@ TLan_GetSKB( const struct tlan_list_tag *tag)
> {
> unsigned long addr;
>
> - addr = tag->buffer[8].address;
> - addr |= (tag->buffer[9].address << 16) << 16;
> + addr = tag->buffer[9].address;
> + addr |= (tag->buffer[8].address << 16) << 16;
> return (struct sk_buff *) addr;
> }
>
> @@ -1984,7 +1984,6 @@ static void TLan_ResetLists( struct net_device *dev )
> TLanList *list;
> dma_addr_t list_phys;
> struct sk_buff *skb;
> - void *t = NULL;
>
> priv->txHead = 0;
> priv->txTail = 0;
> @@ -2022,7 +2021,8 @@ static void TLan_ResetLists( struct net_device *dev )
> }
>
> skb_reserve( skb, NET_IP_ALIGN );
> - list->buffer[0].address = pci_map_single(priv->pciDev, t,
> + list->buffer[0].address = pci_map_single(priv->pciDev,
applied
prev parent reply other threads:[~2008-08-14 8:30 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-08-09 16:54 [PATCH] tlan: Fix two regressions introduced by 64bit conversion Robert Fitzsimons
2008-08-14 8:29 ` Jeff Garzik [this message]
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=48A3ECDA.4090208@garzik.org \
--to=jeff@garzik.org \
--cc=chessman@tux.org \
--cc=davem@davemloft.net \
--cc=jgarzik@redhat.com \
--cc=linux-kernel@vger.kernel.org \
--cc=robfitz@273k.net \
--cc=shemminger@vyatta.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox