From mboxrd@z Thu Jan 1 00:00:00 1970 From: Michal Simek Subject: Re: [PATCH] net: ll_temac: Fix DMA map size bug Date: Tue, 12 May 2015 08:06:31 +0200 Message-ID: <55519867.2090205@xilinx.com> References: Mime-Version: 1.0 Content-Type: text/plain; charset="windows-1252" Content-Transfer-Encoding: 7bit Cc: , =?windows-1252?Q?S=F6ren_Brinkmann?= , , Fabian Frederick , , "David S. Miller" , =?windows-1252?Q?Manuel_Sch=F6lling?= , Markus Elfring , Subbaraya Sundeep Bhatta , To: Julia Lawall , Michal Simek Return-path: In-Reply-To: Sender: linux-kernel-owner@vger.kernel.org List-Id: netdev.vger.kernel.org On 05/12/2015 08:03 AM, Julia Lawall wrote: > On Tue, 12 May 2015, Michal Simek wrote: > >> DMA allocates skb->len instead of headlen >> which is used for DMA. >> >> Signed-off-by: Michal Simek >> --- >> >> drivers/net/ethernet/xilinx/ll_temac_main.c | 4 ++-- >> 1 file changed, 2 insertions(+), 2 deletions(-) >> >> diff --git a/drivers/net/ethernet/xilinx/ll_temac_main.c b/drivers/net/ethernet/xilinx/ll_temac_main.c >> index ca640d04fd93..cfb6bdb37fdc 100644 >> --- a/drivers/net/ethernet/xilinx/ll_temac_main.c >> +++ b/drivers/net/ethernet/xilinx/ll_temac_main.c >> @@ -705,8 +705,8 @@ static int temac_start_xmit(struct sk_buff *skb, struct net_device *ndev) >> >> cur_p->app0 |= STS_CTRL_APP0_SOP; >> cur_p->len = skb_headlen(skb); >> - cur_p->phys = dma_map_single(ndev->dev.parent, skb->data, skb->len, >> - DMA_TO_DEVICE); >> + cur_p->phys = dma_map_single(ndev->dev.parent, skb->data, >> + skb_headlen(skb), DMA_TO_DEVICE); > > I think you could align the later arguments with the right side of the > parenthesis, as done in the original code. Fixed and send v2. Thanks, Michal