Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1759001AbZDSLWc (ORCPT ); Sun, 19 Apr 2009 07:22:32 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1756986AbZDSLWT (ORCPT ); Sun, 19 Apr 2009 07:22:19 -0400 Received: from gw1.cosmosbay.com ([212.99.114.194]:47681 "EHLO gw1.cosmosbay.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755939AbZDSLWS convert rfc822-to-8bit (ORCPT ); Sun, 19 Apr 2009 07:22:18 -0400 Message-ID: <49EB0962.2060309@cosmosbay.com> Date: Sun, 19 Apr 2009 13:22:10 +0200 From: Eric Dumazet User-Agent: Thunderbird 2.0.0.21 (Windows/20090302) MIME-Version: 1.0 To: Tzungder Lin CC: netdev@vger.kernel.org, davem@davemloft.net, linux-kernel@vger.kernel.org Subject: Re: [PATCH 2.6.29.1 1/1] 8139too: fix HW initial flow References: <528f811a0904190316v22621684o3047e37bf8e78bda@mail.gmail.com> In-Reply-To: <528f811a0904190316v22621684o3047e37bf8e78bda@mail.gmail.com> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8BIT X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-1.6 (gw1.cosmosbay.com [0.0.0.0]); Sun, 19 Apr 2009 13:22:11 +0200 (CEST) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 3084 Lines: 79 Tzungder Lin a ?crit : > From: Jonathan Lin > > While ifconfig eth0 up kernel calls open() of 8139 driver(8139too.c). > In rtl8139_hw_start() of rtl8139_open(), 8139 driver enable RX before > setting up the DMA buffer address. In this interval where RX was > enabled and DMA buffer address is not yet set up, any incoming > broadcast packet would be send to a strange physical address: > 0x003e8800 which is the default value of DMA buffer address. > Unfortunately, this address is used by Linux kernel. So kernel panics. > This patch fix it by setting up DMA buffer address before RX enabled > and everything is fine even under broadcast packets attack. > > Signed-off-by: Jonathan Lin > > --- > > --- linux-2.6.29.1/drivers/net/8139too.c.orig 2009-04-19 > 17:50:38.000000000 +0800 > +++ linux-2.6.29.1/drivers/net/8139too.c 2009-04-19 17:52:51.000000000 +0800 > @@ -1382,6 +1382,10 @@ static void rtl8139_hw_start (struct net > RTL_W32_F (MAC0 + 0, le32_to_cpu (*(__le32 *) (dev->dev_addr + 0))); > RTL_W32_F (MAC0 + 4, le16_to_cpu (*(__le16 *) (dev->dev_addr + 4))); > > + tp->cur_rx = 0; > + /* init Rx ring buffer DMA address BEFORE Rx enabled*/ > + RTL_W32_F (RxBuf, tp->rx_ring_dma); > + > /* Must enable Tx/Rx before setting transfer thresholds! */ > RTL_W8 (ChipCmd, CmdRxEnb | CmdTxEnb); > > @@ -1389,8 +1393,6 @@ static void rtl8139_hw_start (struct net > RTL_W32 (RxConfig, tp->rx_config); > RTL_W32 (TxConfig, rtl8139_tx_config); > > - tp->cur_rx = 0; > - > rtl_check_media (dev, 1); > > if (tp->chipset >= CH_8139B) { > @@ -1405,9 +1407,6 @@ static void rtl8139_hw_start (struct net > /* Lock Config[01234] and BMCR register writes */ > RTL_W8 (Cfg9346, Cfg9346_Lock); > > - /* init Rx ring buffer DMA address */ > - RTL_W32_F (RxBuf, tp->rx_ring_dma); > - > /* init Tx buffer DMA addresses */ > for (i = 0; i < NUM_TX_DESC; i++) > RTL_W32_F (TxAddr0 + (i * 4), tp->tx_bufs_dma + (tp->tx_buf[i] - > tp->tx_bufs)); > -- Hi Jonathan There are at least two small problems on this patch submission. 1) Please chose one of email address for Signoff line, not two :) For example : Signed-off-by: Jonathan Lin You'll be soon flooded by spams, so dont ease spamers life :) 2) Try to find out why your email got two lines wrapped You can read Documentation/email-clients.txt if you want extensive documentation. You can also test this by sending your 'patch' to yourself and check if no lines were wrapped before sending the 'official patch' I dont want to bother you Jonathan, as it is pretty hard for a newcomer to learn this things, but I feel that you might find other bugs in linux kernel, so this learning is likely a good investment, both for you and others. Thanks -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/