linux-ide.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 12/15] alim15x3: ->speedproc, filter out invalid modes passed from user-space
@ 2007-06-30 19:10 Bartlomiej Zolnierkiewicz
  2007-07-02 15:42 ` Sergei Shtylyov
  0 siblings, 1 reply; 12+ messages in thread
From: Bartlomiej Zolnierkiewicz @ 2007-06-30 19:10 UTC (permalink / raw)
  To: linux-ide


* ->speedproc, filter out invalid modes passed from user-space.

* Add FIXME about DMA timings never being set.

* Bump driver version.

Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
---
 drivers/ide/pci/alim15x3.c |   15 +++++++++++++++
 1 file changed, 15 insertions(+)

Index: b/drivers/ide/pci/alim15x3.c
===================================================================
--- a/drivers/ide/pci/alim15x3.c
+++ b/drivers/ide/pci/alim15x3.c
@@ -425,6 +425,17 @@ static int ali15x3_tune_chipset (ide_dri
 	u8 tmpbyte		= 0x00;
 	int m5229_udma		= (hwif->channel) ? 0x57 : 0x56;
 
+	/*
+	 * Paranoia, filter out invalid modes passed from user-space
+	 * (unsupported UDMA modes are dealt by ide_rate_filter() call).
+	 *
+	 * This will go away once ide_set_xfer() is fixed.
+	 */
+	if ((speed > XFER_PIO_5 && speed < XFER_SW_DMA_0) ||
+	    (speed > XFER_SW_DMA_2 && speed < XFER_MW_DMA_0) ||
+	    (speed > XFER_MW_DMA_2 && speed < XFER_UDMA_0))
+		return -1;
+
 	if (speed == XFER_UDMA_6)
 		speed1 = 0x47;
 
@@ -437,6 +448,10 @@ static int ali15x3_tune_chipset (ide_dri
 		tmpbyte &= ultra_enable;
 		pci_write_config_byte(dev, m5229_udma, tmpbyte);
 
+		/*
+		 * FIXME: Oh, my... DMA timings are never set.
+		 */
+
 		if (speed < XFER_SW_DMA_0)
 			(void) ali15x3_tune_pio(drive, speed - XFER_PIO_0);
 	} else {

^ permalink raw reply	[flat|nested] 12+ messages in thread

end of thread, other threads:[~2007-07-02 19:37 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-06-30 19:10 [PATCH 12/15] alim15x3: ->speedproc, filter out invalid modes passed from user-space Bartlomiej Zolnierkiewicz
2007-07-02 15:42 ` Sergei Shtylyov
2007-07-02 17:56   ` Bartlomiej Zolnierkiewicz
2007-07-02 18:00     ` Jeff Garzik
2007-07-02 18:41       ` Bartlomiej Zolnierkiewicz
2007-07-02 18:31         ` Jeff Garzik
2007-07-02 18:55           ` Bartlomiej Zolnierkiewicz
2007-07-02 19:13             ` Bartlomiej Zolnierkiewicz
2007-07-02 19:17             ` Jeff Garzik
2007-07-02 19:53               ` Bartlomiej Zolnierkiewicz
2007-07-02 19:22       ` Alan Cox
2007-07-02 19:20         ` Jeff Garzik

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).