Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1758211AbYFJO3r (ORCPT ); Tue, 10 Jun 2008 10:29:47 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1755678AbYFJO3W (ORCPT ); Tue, 10 Jun 2008 10:29:22 -0400 Received: from rv-out-0506.google.com ([209.85.198.226]:2157 "EHLO rv-out-0506.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755179AbYFJO3S (ORCPT ); Tue, 10 Jun 2008 10:29:18 -0400 DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:cc:in-reply-to:mime-version :content-type:content-transfer-encoding:content-disposition :references; b=Dcw45cdIWHsRVgRWQbx9P1WOmuEkoZUJElwHm5B8E0NN9t3bRRsAYifh6vZyw+XJZ/ imQm1WbeRDj1jq7Xc7SJG1kdrx+q5VVu4OThdJG18mP2/7AyxM7pzak+M53N7ozmuPi1 NVXT6iNccegVrerU/CL5gc1yImMY4f9C8IC2I= Message-ID: <19f34abd0806100729h7a060012h91e81248c9c7cdca@mail.gmail.com> Date: Tue, 10 Jun 2008 16:29:17 +0200 From: "Vegard Nossum" To: "Michael Buesch" Subject: Re: BUG: NULL pointer dereference at 00000000 -- IP: [] :b43:b43_dma_mapping_error+0x16/0x155 Cc: "Miles Lane" , "Andrew Morton" , "Linux Kernel Mailing List" , linux-wireless In-Reply-To: <200806101623.34082.mb@bu3sch.de> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <200806101623.34082.mb@bu3sch.de> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1416 Lines: 41 On Tue, Jun 10, 2008 at 4:23 PM, Michael Buesch wrote: > On Tuesday 10 June 2008 16:09:37 Miles Lane wrote: >> BUG: unable to handle kernel NULL pointer dereference at 00000000 >> IP: [] :b43:b43_dma_mapping_error+0x16/0x155 > > > It seems to crash at > 60 extern const struct dma_mapping_ops *dma_ops; > 61 > 62 static inline int dma_mapping_error(dma_addr_t dma_addr) > 63 { > 64 if (dma_ops->mapping_error) > 65 return dma_ops->mapping_error(dma_addr); > 66 > 67 return (dma_addr == bad_dma_address); > 68 } No, this is wrong. /* Check if a DMA mapping address is invalid. */ static bool b43_dma_mapping_error(struct b43_dmaring *ring, dma_addr_t addr, size_t buffersize, bool dma_to_device) { if (unlikely(dma_mapping_error(ring->dev->dev->dma_dev, addr))) It crashes on this line ---^ Vegard -- "The animistic metaphor of the bug that maliciously sneaked in while the programmer was not looking is intellectually dishonest as it disguises that the error is the programmer's own creation." -- E. W. Dijkstra, EWD1036 -- 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/