PATCH] 2.5.11 IDE 45

Martin Dalecki (dalecki@evision-ventures.com)
Mon, 29 Apr 2002 14:34:47 +0200


This is a multi-part message in MIME format.
--------------010304030008030004050803
Content-Type: text/plain; charset=us-ascii; format=flowed
Content-Transfer-Encoding: 7bit

- Fix bogus set_multimode() change. I tough I had reverted it before diff-ing.
This was causing hangs of /dev/hdparm -m8 /dev/hda and similar commands.

--------------010304030008030004050803
Content-Type: text/plain;
name="ide-clean-45.diff"
Content-Transfer-Encoding: 7bit
Content-Disposition: inline;
filename="ide-clean-45.diff"

diff -urN linux-2.5.11/drivers/ide/ide-disk.c linux/drivers/ide/ide-disk.c
--- linux-2.5.11/drivers/ide/ide-disk.c 2002-04-29 05:11:18.000000000 +0200
+++ linux/drivers/ide/ide-disk.c 2002-04-29 14:16:42.000000000 +0200
@@ -562,17 +562,17 @@
*/
static int set_multcount(ide_drive_t *drive, int arg)
{
- struct ata_taskfile args;
+ struct request rq;

if (drive->special_cmd & ATA_SPECIAL_MMODE)
return -EBUSY;

- memset(&args, 0, sizeof(args));
+ ide_init_drive_cmd(&rq);

drive->mult_req = arg;
drive->special_cmd |= ATA_SPECIAL_MMODE;

- ide_raw_taskfile(drive, &args, NULL);
+ ide_do_drive_cmd (drive, &rq, ide_wait);

return (drive->mult_count == arg) ? 0 : -EIO;
}

--------------010304030008030004050803--

-
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/