lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Date:	Tue, 10 Jun 2008 16:23:33 +0200
From:	Michael Buesch <mb@...sch.de>
To:	"Miles Lane" <miles.lane@...il.com>
Cc:	"Andrew Morton" <akpm@...ux-foundation.org>,
	"Linux Kernel Mailing List" <linux-kernel@...r.kernel.org>,
	linux-wireless <linux-wireless@...r.kernel.org>
Subject: Re: BUG: NULL pointer dereference at 00000000 -- IP: [<f8e783d5>] :b43:b43_dma_mapping_error+0x16/0x155

On Tuesday 10 June 2008 16:09:37 Miles Lane wrote:
> BUG: unable to handle kernel NULL pointer dereference at 00000000
> IP: [<f8e783d5>] :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 }

because dma_ops is a NULL pointer here.
Can you add a WARN_ON(!dma_ops); at the beginning of the function
inside of include/asm/x86/dma-mapping.h to confirm this?

-- 
Greetings Michael.
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ