linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* Patch?: linux-2.5.42/drivers/ide/ide-probe.c null pointer dereference
@ 2002-10-13 17:11 Adam J. Richter
  0 siblings, 0 replies; only message in thread
From: Adam J. Richter @ 2002-10-13 17:11 UTC (permalink / raw)
  To: alan, andre, axboe; +Cc: linux-kernel

[-- Attachment #1: Type: text/plain, Size: 1014 bytes --]


	Linux-2.5.42 introduced a new IDE driver function
HWIF(drive)->ide_dma_queued_on().  It appears that if the device does
not do DMA at all, ide_dma_queued_on will be set to NULL.  I guess that
is intentional, as that other code in drivers/ide actually checks
for the possibility that ide_dma_queue_on may be null.

	Anyhow, when I booted 2.5.42, I got a null pointer dereference,
and I think it was because the system that I booted had an ATAPI CDROM
drive and I think my chip set and drive combination does not do DMA for
ATAPI devices.

	Anyhow, the following patch made the problem go away, although
I'm not that confident of the correctness of the fix.  For what it's worth,
I am composing this email on the system running the changed code.

-- 
Adam J. Richter     __     ______________   575 Oroville Road
adam@yggdrasil.com     \ /                  Milpitas, California 95035
+1 408 309-6081         | g g d r a s i l   United States of America
                         "Free Software For The Rest Of Us."

[-- Attachment #2: ide-probe.diff --]
[-- Type: text/plain, Size: 373 bytes --]

--- linux-2.5.42/drivers/ide/ide-probe.c	2002-10-11 21:22:09.000000000 -0700
+++ linux/drivers/ide/ide-probe.c	2002-10-13 09:57:02.000000000 -0700
@@ -806,7 +806,8 @@
 	ide_toggle_bounce(drive, 1);
 
 #ifdef CONFIG_BLK_DEV_IDE_TCQ_DEFAULT
-	HWIF(drive)->ide_dma_queued_on(drive);
+	if (HWIF(drive)->ide_dma_queued_on)
+		HWIF(drive)->ide_dma_queued_on(drive);
 #endif
 }
 

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2002-10-13 17:05 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2002-10-13 17:11 Patch?: linux-2.5.42/drivers/ide/ide-probe.c null pointer dereference Adam J. Richter

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).